library(tidyverse)
library(knitr)
library(kableExtra)
library(sleuth) # gene expression
library(edgeR) # gene expression
library(qvalue) # multiple comparisons
library(ggsignif) # significance boxplots
library(scatterD3)# interactive scatterplots
library(networkD3)# interactive networks
library(GOstats) # GO terms
library(GSEABase) # GO terms
library(devtools) #better session info
library(WGCNA) # gene co-expression
library(ggbiplot) # pca plot
library(ordinal) # clmm2
library(MASS) # rlm for plotting
library(captioner) # figure captions
library(ggpubr) # arranging figures
library(VennDiagram)
allowWGCNAThreads()
## Allowing multi-threading with up to 4 threads.
## [1] "Figure S1: _Dsx_ and _Vg_ expression are lower in treated vs. control bees"
## [1] "Figure S2: Interactive network of _Dsx_-connected genes"
## [1] "Table S1: Distribution of genes by module. _Dsx_ containing module is highlighted in red"
## [1] "Table S2: Genes in the _Dsx_-responsivue module"
## [1] "Table S3: Gene Ontology (GO) terms enriched in the _Dsx_-responsive module"
## [1] "Table S4: Genes in the _Dsx_-containing module from He et al. Higher values of logFC correspond to greater expression in queens. Genes also found in the Dsx-responsive module from the RNAi experiment are highlighted in yellow"
## [1] "Table S5: Cumulative link mixed model analysis of pheromonal composition and ovary development"
## [1] "Table S6: There are no differences in mortality between the treatments"
## [1] "Table S7: Correlation between pheromone components and principal component axes"
counts <- read_csv("data/genes_counts.csv")
tpm <- read_csv("data/genes_tpm.csv")
treatments <- read_csv("data/treatments.csv", col_types = "ccc")
ercc <- left_join(read_tsv("data/ercc.tsv"), tpm, by = "gene_id")
descriptions <- read_tsv("data/descriptions.tsv", col_names = c("gene_id", "description"))
mix1 <- ercc[,c("gene_id", "mix1", subset(treatments, spikein == "mix1")$sample)] %>% gather( library, observed, -c(mix1,gene_id)) %>% dplyr::rename(expected = mix1 )
mix2 <- ercc[,c("gene_id", "mix2", as.character(subset(treatments, spikein == "mix2")$sample))] %>% gather( library, observed, -mix2, -gene_id) %>% dplyr::rename(expected = mix2 )
ercc <- rbind(mix1,mix2)
ggplot(ercc, aes(observed+1, expected+1, color=as.factor(library))) + geom_point() + scale_y_continuous(trans='log2')+scale_x_continuous(trans='log2')+ geom_abline()+guides(color=F)
cutoff <- seq(0,5,by=0.1)
r <- c()
for (i in cutoff) {
keepGenes <- ercc %>% group_by(gene_id, library) %>% summarise(all_mean = mean(observed)) %>% filter(all_mean > i) %>% .$gene_id %>% unique
r <- c(r, summary(lm(log2(observed+1)~log2(expected+1), data=subset(ercc, gene_id %in% keepGenes)))$r.squared)
}
plot(cutoff,r)
The signal to noise is basically fine even at the lowest levels, so we do not do any abundance-based filtering.
The data are fairly noisy, so we conducted the DGE analysis using two separate alignment/counting philosophies. The more tradional approach uses alignment-based gene quantification using RSEM, and the second one uses a kmer-based approach implemented in Kallisto. Each analysis is shown in a separate tab.
counts <- counts %>% filter(! grepl("ERCC", gene_id))
design <- model.matrix(~treatment, treatments)
cds <- DGEList( counts[, treatments$sample] , group = treatments$treatment)
dim(cds)
## [1] 13811 20
cds <- calcNormFactors( cds)
plotMDS( cds)
cds <- estimateDisp( cds, design)
de.tgw <- exactTest( cds , pair = c( "DSX" , "GFP" ) )
de.tgw$table$gene_id <- counts$gene_id
de.tgw$table <- left_join(de.tgw$table, descriptions, by = "gene_id")
de.tgw$table %>% filter(gene_id == "Dsx")
## logFC logCPM PValue gene_id description
## 1 0.7612763 6.900205 0.03908283 Dsx doublesex
de.tgw$table %>% filter(gene_id == "Vg")
## logFC logCPM PValue gene_id description
## 1 0.8456437 10.0494 0.01632941 Vg vitellogenin
de.tgw$table %>% filter(gene_id == "Mrjp1")
## logFC logCPM PValue gene_id description
## 1 2.774854 3.957461 0.003626191 Mrjp1 major royal jelly protein 1
de.tgw$table %>% filter(gene_id == "Dnmt3")
## logFC logCPM PValue gene_id description
## 1 0.7620547 2.264834 0.0328638 Dnmt3 DNA methyltransferase 3
This indicates that Vg was successfully knocked down. We predicted that Vg levels, which are proximally controlled by Dsx should also be lower, and they were.
We are using single-end reads, so we don’t expect much power to distinguish isoforms, but is is worth checking.
dsxIsoforms <- tibble(isoform_id = c("NM_001111255.1", "NM_001134935.1", "NM_001134936.1", "NR_024131.1" ,"XM_006560013.2"), description = c("M", "F2", "B", "RNA", "X1"))
isoforms <- read_csv("data/isoforms.csv") %>% filter(! grepl("ERCC", isoform_id))
## Parsed with column specification:
## cols(
## .default = col_double(),
## isoform_id = col_character()
## )
## See spec(...) for full column specifications.
cdsIso <- DGEList( isoforms[, treatments$sample], group = treatments$treatment)
cdsIso <- calcNormFactors( cdsIso)
cdsIso <- estimateDisp( cdsIso, design)
deIso.tgw <- exactTest( cdsIso , pair = c( "DSX" , "GFP" ) )
deIso.tgw$table$isoform_id <- isoforms$isoform_id
kable(deIso.tgw$table %>% filter(isoform_id %in% dsxIsoforms$isoform_id) %>% left_join(dsxIsoforms, by = "isoform_id"))
| logFC | logCPM | PValue | isoform_id | description |
|---|---|---|---|---|
| 0.4836133 | 1.025245 | 0.3808945 | NR_024131.1 | RNA |
| 0.7477926 | 6.871002 | 0.0522470 | XM_006560013.2 | X1 |
| 1.4145332 | -1.208466 | 0.3678700 | NM_001134936.1 | B |
| 1.4269961 | -2.455635 | 0.4267905 | NM_001134935.1 | F2 |
| 0.0000000 | -2.555809 | 1.0000000 | NM_001111255.1 | M |
Actually, the X1 isoform, the one we actually knocked down is significantly lower in the Dsx RNAi-treated bees (using a one-tailed test).
treatments <- treatments %>% mutate(path = paste0("./data/kallisto/", sample))
t2g <- read_tsv("data/g2i.tsv", col_names=c('target_id','gene_id', 'description'))
so <- sleuth_prep(treatments, target_mapping = t2g, aggregation_column = 'gene_id')
so <- sleuth_fit(so, ~treatment, 'full')
so <- sleuth_fit(so, ~1, 'reduced')
so <- sleuth_lrt(so, 'reduced', 'full')
sleuth_table <- sleuth_results(so, 'reduced:full', 'lrt', show_all = FALSE)
saveRDS(sleuth_table, "data/sleuth_table.rds")
sleuth_table %>% filter(target_id == "Dsx")
## target_id test_stat pval qval rss sigma_sq tech_var
## 1 Dsx 3.87193 0.04910003 0.6887556 8.863661 0.4652597 0.001248802
## mean_obs var_obs sigma_sq_pmax smooth_sigma_sq final_sigma_sq
## 1 5.986005 0.4665085 0.4652597 0.1337446 0.4652597
## degrees_free
## 1 1
Both quantification approaches provide the same result, Dsx is upregulated in the control bees, and so is Vg (as predicted).
We are interested in understanding the netwoks of genes co-expressed with Dsx in honey bees, and to checke whether this network is associated with RNAi treatment.
expDat <- as.data.frame(t(tpm %>% filter(! grepl("ERCC", gene_id)) %>% dplyr::select(-gene_id)))
colnames(expDat) <- tpm %>% filter(! grepl("ERCC", gene_id)) %>% .$gene_id
expDat <- expDat[as.character(treatments$sample),] # re-arrange to match treatments vector
pickSoftThreshold(expDat, RsquaredCut = 0.8, networkType = "unsigned")$powerEstimate
## Power SFT.R.sq slope truncated.R.sq mean.k. median.k. max.k.
## 1 1 0.645 8.410 0.956 3900.0 3990.0 6160
## 2 2 0.163 0.263 0.602 1770.0 1790.0 3600
## 3 3 0.175 -0.348 0.817 985.0 970.0 2380
## 4 4 0.469 -0.672 0.845 620.0 579.0 1730
## 5 5 0.598 -0.824 0.866 423.0 370.0 1330
## 6 6 0.687 -0.902 0.893 305.0 249.0 1050
## 7 7 0.733 -0.947 0.896 230.0 173.0 857
## 8 8 0.762 -0.995 0.894 179.0 124.0 721
## 9 9 0.769 -1.050 0.876 142.0 91.3 623
## 10 10 0.776 -1.090 0.866 116.0 68.3 545
## 11 12 0.889 -1.090 0.945 80.7 40.2 431
## 12 14 0.898 -1.150 0.952 59.1 24.9 362
## 13 16 0.896 -1.230 0.954 44.8 16.1 318
## 14 18 0.894 -1.290 0.955 35.1 10.7 283
## 15 20 0.910 -1.300 0.971 28.1 7.4 255
## [1] 12
SoftPower = 12
We’ll pick soft power 12, which is over the 0.8 threshold.
net <- blockwiseModules(expDat, power = SoftPower,
TOMType = "unsigned", minModuleSize = 30,
reassignThreshold = 0, mergeCutHeight = 0.25,
numericLabels = TRUE, pamRespectsDendro = FALSE,
saveTOMs = FALSE,
verbose = 3, maxBlockSize = 15000)
saveRDS(net, "data/net.rds")
MEs0 <- moduleEigengenes(expDat, net$colors)$eigengenes
MEs <- orderMEs(MEs0)
modNames <- substring(names(MEs), 3)
moduleTraitCor <- cor(MEs, as.numeric(gsub("GFP",0,gsub("DSX",1,treatments$treatment))), method = "spearman");
moduleTraitPvalue <- corPvalueStudent(moduleTraitCor, 20)
(DsxModule <- net$colors[which(colnames(expDat) == "Dsx")])
## [1] 6
| Module | Number of genes |
|---|---|
| 0 | 544 |
| 1 | 3314 |
| 2 | 1786 |
| 3 | 1535 |
| 4 | 1381 |
| 5 | 983 |
| 6 | 967 |
| 7 | 732 |
| 8 | 682 |
| 9 | 342 |
| 10 | 238 |
| 11 | 155 |
| 12 | 146 |
| 13 | 146 |
| 14 | 107 |
| 15 | 96 |
| 16 | 94 |
| 17 | 92 |
| 18 | 83 |
| 19 | 75 |
| 20 | 62 |
| 21 | 54 |
| 22 | 54 |
| 23 | 52 |
| 24 | 51 |
| 25 | 40 |
Alldegrees <- intramodularConnectivity.fromExpr(expDat, net$colors, power = SoftPower)
## softConnectivity: FYI: connecitivty of genes with less than 7 valid samples will be returned as NA.
## ..calculating connectivities..
rownames(Alldegrees) <- colnames(expDat)
geneModuleMembership <- as.data.frame(cor(expDat, MEs, use = "p"));
## Warning in cor(expDat, MEs, use = "p"): the standard deviation is zero
Alldegrees["Dsx",]
## kTotal kWithin kOut kDiff
## Dsx 76.54159 32.44871 44.09288 -11.64418
DsxModuleGenes <- colnames(expDat)[net$colors == DsxModule]
connectivityDsxModule <- data.frame(kWithin = Alldegrees[DsxModuleGenes,"kWithin"], gene_id = rownames(Alldegrees[DsxModuleGenes,]), moduleMembership = geneModuleMembership[DsxModuleGenes, paste0("ME",DsxModule)]) %>% left_join(de.tgw$table, by = "gene_id")
## Warning: Column `gene_id` joining factor and character vector, coercing
## into character vector
dsxModuleGenes <- descriptions %>% filter(gene_id %in% colnames(expDat)[net$colors == DsxModule] ) %>% left_join(de.tgw$table, by = "gene_id") %>% left_join(connectivityDsxModule %>% dplyr::select(gene_id, kWithin), by="gene_id") %>% dplyr::select(gene = gene_id, description = description.x, logFC, kWithin, logCPM) %>% arrange(desc(logFC))
highligh <- which(dsxModuleGenes$gene %in% c("Vg", "Dsx", "Dnmt3"))
In addition to Dsx, this module contains Vg, as predicted. It also contains the DNA methyltransferase Dnmt3, which has been shown to be involved in queen/worker differentiation during development.
| gene | description | logFC | kWithin | logCPM |
|---|---|---|---|---|
| LOC102655871 | uncharacterized HTH-type transcriptional regulator HI_1364-like | 4.1278771 | 30.7563014 | -1.9771818 |
| LOC727487 | selenium-binding protein 1-A-like | 4.0680932 | 53.9970165 | 1.7454831 |
| LOC107965906 | probable serine/threonine-protein kinase DDB_G0282963 | 3.9192460 | 42.5831186 | -2.0428285 |
| LOC102653653 | uncharacterized LOC102653653 | 3.6357315 | 65.0384409 | 1.0357067 |
| LOC551816 | SH3 domain-binding protein 5-like | 3.5434360 | 44.8587257 | -2.1562394 |
| LOC107965634 | uncharacterized LOC107965634 | 3.2434560 | 1.0720439 | -2.2306041 |
| LOC107965444 | uncharacterized LOC107965444 | 2.9796074 | 5.4945517 | -2.0426669 |
| LOC107964215 | uncharacterized LOC107964215 | 2.9594147 | 57.2450646 | -2.2906962 |
| LOC100577416 | peptide chain release factor 2-like | 2.5773551 | 29.1640097 | -2.1687064 |
| LOC107964975 | uncharacterized LOC107964975 | 2.4179152 | 28.5998615 | 1.4682996 |
| LOC107964188 | uncharacterized LOC107964188 | 2.1740449 | 14.4784659 | -2.2627623 |
| LOC102653914 | uncharacterized LOC102653914 | 2.1568864 | 3.0378980 | -2.2614029 |
| Mir9891 | microRNA 9891 | 2.1507545 | 64.1643044 | -2.4172331 |
| LOC100576244 | aryl-phospho-beta-D-glucosidase BglH-like | 2.1504175 | 27.1237917 | -2.4172703 |
| LOC726094 | uncharacterized LOC726094 | 2.1060000 | 13.4500606 | -2.4222344 |
| LOC102656707 | uncharacterized LOC102656707 | 2.0611603 | 7.5368836 | -0.4537934 |
| LOC102654203 | uncharacterized LOC102654203 | 2.0457756 | 57.2152537 | -2.4294918 |
| LOC107965758 | uncharacterized LOC107965758 | 2.0306263 | 3.7936235 | -2.4306537 |
| LOC102653912 | uncharacterized LOC102653912 | 2.0100056 | 6.7921854 | -1.0552727 |
| LOC102655698 | uncharacterized LOC102655698 | 2.0084339 | 2.4848101 | -1.7860302 |
| LOC410776 | protein 60A | 1.7940451 | 21.7286992 | 0.0398473 |
| LOC107966094 | uncharacterized LOC107966094 | 1.7859992 | 50.7954873 | -2.4568178 |
| LOC100576248 | uncharacterized LOC100576248 | 1.7608590 | 18.6020102 | -1.0608890 |
| LOC102655972 | uncharacterized LOC102655972 | 1.7363988 | 44.4304672 | -2.3312220 |
| LOC409787 | paramyosin, long form-like | 1.7318902 | 30.6657920 | 8.3189935 |
| LOC726654 | T-box protein H15-like | 1.7155406 | 33.0219519 | -1.9118649 |
| LOC102654436 | uncharacterized LOC102654436 | 1.7093575 | 8.4270840 | -0.9772877 |
| LOC107965409 | uncharacterized LOC107965409 | 1.6959910 | 1.8622506 | -2.1067742 |
| LOC100576524 | transmembrane protein 94-like | 1.6730918 | 3.4739230 | -0.4806128 |
| LOC102654518 | uncharacterized LOC102654518 | 1.6684932 | 21.9821375 | 0.6872862 |
| LOC100578988 | zinc finger MYND domain-containing protein 10 homolog | 1.6438777 | 1.0345959 | -0.5853673 |
| LOC726965 | uncharacterized LOC726965 | 1.5724606 | 28.2751460 | 6.1359016 |
| LOC725019 | loricrin-like | 1.5669304 | 13.2019616 | -2.3545127 |
| LOC724468 | uncharacterized LOC724468 | 1.5042895 | 9.2959422 | -0.1407619 |
| LOC107965074 | uncharacterized LOC107965074 | 1.4799892 | 25.1133203 | -1.9193848 |
| LOC727338 | sarcospan-like | 1.4690031 | 1.4689909 | -1.1280618 |
| Apd-1 | apidermin 1 | 1.4676910 | 33.7546606 | 5.5954227 |
| LOC107964434 | uncharacterized LOC107964434 | 1.4546821 | 0.8606209 | -2.1505349 |
| LOC107964949 | uncharacterized LOC107964949 | 1.4521117 | 7.2941720 | -0.9463712 |
| LOC102653766 | tRNA dimethylallyltransferase-like | 1.4482933 | 1.9401759 | -2.4857860 |
| LOC100578558 | uncharacterized LOC100578558 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965367 | uncharacterized LOC107965367 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965561 | carbonic anhydrase 2-like | 1.4335953 | 64.1643044 | -2.4871817 |
| Mir3727 | microRNA 3727 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965044 | uncharacterized LOC107965044 | 1.4315785 | 45.0073683 | 3.1318444 |
| LOC107964309 | uncharacterized LOC107964309 | 1.4156364 | 7.7759293 | -1.3233481 |
| LOC107964227 | uncharacterized LOC107964227 | 1.3714872 | 22.0930448 | 3.0841407 |
| LOC102656494 | uncharacterized LOC102656494 | 1.3636201 | 1.1350399 | -2.1618935 |
| LOC100576080 | uncharacterized LOC100576080 | 1.3577094 | 1.9688298 | -1.4232428 |
| Apd-2 | apidermin 2 | 1.3446245 | 17.8353692 | 3.8875491 |
| Mir87-2 | microRNA 87-2 | 1.3132049 | 11.1649852 | -1.8504540 |
| LOC100577906 | uncharacterized LOC100577906 | 1.3058529 | 2.2651108 | 0.4079342 |
| LOC102656479 | uncharacterized LOC102656479 | 1.2989700 | 0.1258375 | -1.8025064 |
| LOC724202 | uncharacterized LOC724202 | 1.2840586 | 6.3774346 | -2.1024444 |
| LOC100577994 | putative SLC9B1-like protein SLC9B1P1 | 1.2744837 | 65.7661375 | -0.3082461 |
| LOC725651 | uncharacterized LOC725651 | 1.2696194 | 22.3048345 | -0.4110694 |
| LOC552136 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | 1.2592447 | 2.1915370 | -0.5034051 |
| Mir980 | microRNA 980 | 1.2583597 | 3.0640288 | -1.9354257 |
| LOC102655188 | zinc finger protein 707-like | 1.2552558 | 15.6026975 | -0.7348611 |
| LOC724197 | uncharacterized LOC724197 | 1.2394007 | 1.2077874 | -1.3911934 |
| LOC412917 | probable serine/threonine-protein kinase dyrk2 | 1.2305860 | 18.9494091 | 1.0334384 |
| LOC100576172 | uncharacterized LOC100576172 | 1.2222467 | 33.4319112 | 1.4509853 |
| LOC552199 | venom carboxylesterase-6-like | 1.1874316 | 1.0362291 | 0.7510326 |
| LOC724852 | lipoma HMGIC fusion partner-like | 1.1626364 | 28.0688164 | -0.7019627 |
| LOC107964935 | uncharacterized LOC107964935 | 1.1588980 | 0.2991824 | -2.2940334 |
| TpnCIIIa | troponin C type IIIa | 1.1509842 | 60.3953580 | 9.5878433 |
| LOC408579 | thrombospondin type-1 domain-containing protein 4-like | 1.1410712 | 36.1300216 | 2.5991314 |
| LOC552073 | arylsulfatase B-like | 1.1362786 | 40.3667307 | 5.1288734 |
| LOC102656573 | uncharacterized LOC102656573 | 1.1211446 | 3.0511472 | -1.3186257 |
| LOC410994 | tubulin beta chain-like | 1.1131821 | 23.3323796 | 0.2782197 |
| LOC410624 | serine proteinase stubble | 1.1081310 | 5.6581889 | -0.6456428 |
| LOC102654201 | uncharacterized LOC102654201 | 1.1069141 | 1.3574563 | -0.9722450 |
| LOC107964277 | uncharacterized LOC107964277 | 1.1035452 | 1.6516191 | -1.9945650 |
| LOC102653612 | uncharacterized LOC102653612 | 1.1019973 | 9.2253712 | -0.2417043 |
| LOC100578824 | zinc finger protein ZIC 4-like | 1.1000933 | 10.0075892 | 0.6088155 |
| LOC102654163 | uncharacterized LOC102654163 | 1.0943062 | 3.8053770 | -0.2943693 |
| LOC409095 | protein apterous | 1.0670504 | 65.6117013 | 0.7271275 |
| Obp2 | odorant binding protein 2 | 1.0657638 | 21.1677684 | -0.6087805 |
| LOC107964040 | uncharacterized LOC107964040 | 1.0628527 | 38.5306878 | 1.2459146 |
| LOC410824 | spondin-1 | 1.0507562 | 48.1553486 | 2.9942682 |
| LOC552637 | actin, clone 403-like | 1.0484614 | 3.8214114 | -0.2962644 |
| 18-w | 18-wheeler | 1.0482142 | 26.2432484 | -0.6065425 |
| LOC107964589 | microtubule-associated protein futsch-like | 1.0469905 | 36.7965093 | -0.4148401 |
| LOC107965593 | uncharacterized LOC107965593 | 1.0454900 | 31.0520546 | 0.5402742 |
| LOC726886 | uncharacterized LOC726886 | 1.0437750 | 4.3944540 | 1.1100022 |
| LOC102656867 | ATP-dependent RNA helicase RhlE-like | 1.0324184 | 6.5630129 | -2.3202638 |
| LOC102653661 | uncharacterized LOC102653661 | 1.0301545 | 0.6647608 | -2.1593576 |
| LOC107965520 | uncharacterized LOC107965520 | 1.0283722 | 0.6669014 | -1.1287196 |
| LOC408888 | leucine-rich repeats and immunoglobulin-like domains protein 1 | 1.0279570 | 16.9757481 | 2.4872914 |
| LOC726283 | neuronal calcium sensor 2 | 1.0201855 | 72.7224369 | 2.0729008 |
| LOC100576147 | fork head domain-containing protein FD4 | 1.0094645 | 14.2929214 | 1.0051234 |
| LOC410231 | protein toll | 1.0060487 | 9.6493384 | -2.4191363 |
| LOC410613 | major facilitator superfamily domain-containing protein 6 | 1.0030220 | 27.0242714 | 4.2706378 |
| LOC100576948 | uncharacterized LOC100576948 | 1.0021873 | 33.4139699 | -0.8997045 |
| LOC410997 | organic cation transporter 1-like | 1.0012803 | 30.3807028 | -0.0483803 |
| LOC551957 | facilitated trehalose transporter Tret1-like | 0.9978614 | 15.1172679 | 5.0320591 |
| LOC410190 | tyrosine-protein kinase Dnt | 0.9780017 | 1.9953657 | -0.1628527 |
| LOC102655006 | cyclopropane-fatty-acyl-phospholipid synthase-like | 0.9699444 | 3.1989926 | -1.8406034 |
| LOC100577348 | uncharacterized LOC100577348 | 0.9624294 | 5.7657029 | -1.3439401 |
| LOC724592 | calmodulin-binding transcription activator 2 | 0.9620413 | 33.4328924 | 1.9804236 |
| LOC100578249 | uncharacterized LOC100578249 | 0.9619709 | 47.8979054 | 2.2253076 |
| LOC408872 | steroid receptor seven-up, isoforms B/C | 0.9545382 | 45.9204960 | -0.2158994 |
| LOC410996 | tubulin beta chain | 0.9529356 | 29.8712374 | 1.2309103 |
| LOC726948 | suppressor of lurcher protein 1 | 0.9526404 | 4.7280254 | 2.0969528 |
| LOC411046 | uncharacterized LOC411046 | 0.9467455 | 28.5466175 | 0.6484088 |
| LOC725290 | transcription factor CP2-like protein 1 | 0.9395201 | 45.3160561 | 7.0831085 |
| LOC552368 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | 0.9343190 | 12.2215964 | -0.0177632 |
| LOC408429 | tensin-1 | 0.9339438 | 77.3130129 | 9.0999733 |
| LOC102654078 | uncharacterized LOC102654078 | 0.9277920 | 4.9266264 | -2.1856414 |
| LOC406073 | homeobox protein prospero | 0.9255316 | 26.1360383 | 0.9694884 |
| LOC102655639 | uncharacterized LOC102655639 | 0.9253894 | 52.2364951 | -0.0590385 |
| LOC727442 | AT-rich interactive domain-containing protein 3A-like | 0.9154949 | 37.7951041 | 1.1215362 |
| LOC107964938 | uncharacterized LOC107964938 | 0.9051890 | 58.8146138 | 2.4444232 |
| LOC408462 | uncharacterized LOC408462 | 0.9049511 | 18.6207559 | 0.8327332 |
| Tg | transglutaminase | 0.8968795 | 9.5994637 | 2.1716729 |
| LOC410373 | leucine-rich repeat-containing protein 15 | 0.8928317 | 42.3394555 | 6.1305221 |
| LOC550663 | putative oxidoreductase GLYR1 homolog | 0.8863323 | 54.1389744 | 6.8027728 |
| LOC102656718 | uncharacterized LOC102656718 | 0.8854952 | 3.9897683 | -0.4675288 |
| LOC102656788 | uncharacterized LOC102656788 | 0.8853444 | 43.6313755 | 4.3831046 |
| LOC107965267 | uncharacterized LOC107965267 | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC725058 | GS homeobox 1-like | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC725089 | cuticular protein | 0.8823784 | 64.1643044 | -2.5234131 |
| Mir6042 | microRNA 6042 | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC726321 | uncharacterized LOC726321 | 0.8804572 | 60.5150132 | 8.3852595 |
| LOC724961 | protein drumstick | 0.8803588 | 50.6675665 | 2.9103657 |
| LOC725190 | protein snail | 0.8789218 | 40.4172014 | 1.5901540 |
| LOC107964332 | uncharacterized LOC107964332 | 0.8787300 | 25.5570107 | 1.1400506 |
| LOC107965317 | uncharacterized LOC107965317 | 0.8776717 | 11.1932584 | 1.0422434 |
| LOC725775 | uncharacterized LOC725775 | 0.8773677 | 25.3419076 | 0.5145279 |
| LOC725732 | uncharacterized LOC725732 | 0.8772066 | 78.4888677 | 7.0120854 |
| LOC409800 | unconventional myosin-IXb-like | 0.8756980 | 64.1643044 | -2.5237798 |
| LOC551799 | putative mediator of RNA polymerase II transcription subunit 26 | 0.8755603 | 55.0009192 | 5.8423646 |
| LOC408539 | sideroflexin-3 | 0.8619684 | 17.5745502 | 6.0825804 |
| Camkii | calcium/calmodulin-dependent protein kinase II | 0.8603428 | 25.5507162 | 4.5994426 |
| LOC100578733 | nose resistant to fluoxetine protein 6 | 0.8601092 | 58.0029623 | 7.5414236 |
| LOC550922 | protein mab-21-like | 0.8587860 | 5.6466237 | -0.4297050 |
| LOC100576254 | uncharacterized LOC100576254 | 0.8585322 | 45.4375707 | 2.9954306 |
| LOC727137 | protein TANC2-like | 0.8554759 | 64.1643044 | -2.5248806 |
| LOC410254 | glutaryl-CoA dehydrogenase, mitochondrial | 0.8542666 | 35.4819144 | 4.5143441 |
| LOC102656363 | anaerobic ribonucleoside-triphosphate reductase-activating protein-like | 0.8520107 | 0.9270635 | -1.7098513 |
| LOC102656820 | uncharacterized LOC102656820 | 0.8469420 | 2.5461285 | -1.9877619 |
| Vg | vitellogenin | 0.8456437 | 20.5830666 | 10.0493996 |
| LOC100577332 | GATA-binding factor C-like | 0.8454175 | 20.7159449 | 2.6284218 |
| Mir3730 | microRNA 3730 | 0.8425770 | 70.8150756 | -0.1852727 |
| LOC724740 | fork head domain transcription factor slp1 | 0.8420210 | 48.6363906 | 0.3693353 |
| LOC411173 | torso-like protein | 0.8410324 | 61.2092154 | 4.0578694 |
| LOC408329 | uncharacterized LOC408329 | 0.8392144 | 17.4016233 | 1.4102163 |
| Antp | homeotic protein antennapedia | 0.8328867 | 44.3651380 | 4.6498102 |
| LOC410771 | WD repeat-containing protein 47 | 0.8327639 | 40.0944315 | 6.1179715 |
| LOC410365 | laccase 2 | 0.8322692 | 20.6865253 | 1.5948551 |
| LOC413370 | hemicentin-2 | 0.8318231 | 30.2219743 | 3.9740424 |
| LOC102654111 | platelet glycoprotein V-like | 0.8294908 | 31.4492693 | 2.0244213 |
| LOC107965724 | uncharacterized LOC107965724 | 0.8279308 | 0.3870658 | -0.8134518 |
| LOC107965822 | uncharacterized LOC107965822 | 0.8212176 | 7.9626532 | 2.8204608 |
| LOC100576302 | uncharacterized LOC100576302 | 0.8203259 | 41.4260217 | 1.6211453 |
| LOC102655303 | uncharacterized LOC102655303 | 0.8196909 | 26.7650527 | 2.2783719 |
| LOC725665 | 5-oxoprolinase | 0.8193132 | 18.1416656 | 1.4827057 |
| LOC411365 | beta-1,4-N-acetylgalactosaminyltransferase bre-4 | 0.8153892 | 69.3538808 | 5.4275751 |
| LOC107964878 | uncharacterized LOC107964878 | 0.8146630 | 20.6981651 | -0.3061001 |
| LOC100578128 | uncharacterized LOC100578128 | 0.8112054 | 3.5586528 | 0.8172922 |
| LOC100578420 | uncharacterized LOC100578420 | 0.8039483 | 55.8459822 | 2.7047212 |
| LOC100577028 | uncharacterized LOC100577028 | 0.7958952 | 43.6606866 | 1.8879769 |
| LOC412764 | MFS-type transporter SLC18B1-like | 0.7931143 | 2.1217720 | 2.5045528 |
| LOC724763 | odorant receptor 9a | 0.7868646 | 21.8695316 | 1.2501274 |
| LOC107964136 | uncharacterized LOC107964136 | 0.7861154 | 21.4742570 | 1.6613318 |
| LOC102656164 | uncharacterized LOC102656164 | 0.7838831 | 19.9597326 | 0.1238349 |
| LOC724830 | uncharacterized LOC724830 | 0.7813169 | 6.8261333 | -0.2880473 |
| LOC102656639 | midasin-like | 0.7786702 | 11.8962028 | -1.1895592 |
| LOC552374 | protein Wnt-1 | 0.7785134 | 49.5338907 | 3.3933256 |
| LOC408271 | rap1 GTPase-activating protein 1 | 0.7754344 | 24.8410131 | 2.6381220 |
| LOC727121 | uncharacterized LOC727121 | 0.7730646 | 26.6369465 | 4.9021967 |
| LOC726210 | uncharacterized family 31 glucosidase KIAA1161 | 0.7639165 | 52.5738277 | 3.6436819 |
| LOC409919 | excitatory amino acid transporter 1-like | 0.7635282 | 33.4775655 | 6.7377373 |
| CPR17 | cuticular protein 17 | 0.7632292 | 14.2821072 | 1.1311427 |
| LOC725179 | inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2 | 0.7626761 | 42.9891533 | 6.6126127 |
| Dnmt3 | DNA methyltransferase 3 | 0.7620547 | 37.2842233 | 2.2648340 |
| Dsx | doublesex | 0.7612763 | 32.4487057 | 6.9002052 |
| LOC411157 | fat-like cadherin-related tumor suppressor homolog | 0.7608550 | 69.1532771 | 5.5387394 |
| LOC107964049 | uncharacterized LOC107964049 | 0.7567284 | 9.4027957 | 0.1187473 |
| LOC727241 | uncharacterized LOC727241 | 0.7526091 | 31.5586918 | 3.8691194 |
| LOC408577 | uncharacterized LOC408577 | 0.7498906 | 38.8973061 | 6.7437416 |
| pHCl | ligand-gated ion channel pHCl | 0.7445866 | 35.4384534 | 4.5722657 |
| LOC102656810 | uncharacterized LOC102656810 | 0.7436974 | 32.9880967 | 2.1142653 |
| LOC100578680 | uncharacterized LOC100578680 | 0.7429363 | 28.9635261 | 5.6848777 |
| LOC102654773 | zinc finger protein 664-like | 0.7425499 | 23.4092713 | 2.2744256 |
| LOC408841 | voltage-dependent calcium channel subunit alpha-2/delta-3 | 0.7407599 | 5.7768165 | 2.8024072 |
| LOC107964206 | zinc finger protein 717-like | 0.7396728 | 50.8489426 | 5.0767270 |
| 5-HT1 | serotonin receptor | 0.7379471 | 11.0830037 | 0.7230219 |
| LOC107965483 | uncharacterized LOC107965483 | 0.7358346 | 10.6430083 | 2.2707253 |
| LOC102656799 | uncharacterized LOC102656799 | 0.7350069 | 2.3561586 | -1.7887219 |
| LOC102654792 | uncharacterized LOC102654792 | 0.7338194 | 14.7707842 | 0.7030198 |
| LOC408331 | histone deacetylase 5 | 0.7331549 | 34.9145272 | 4.4785784 |
| LOC100576591 | putative uncharacterized protein DDB_G0277255 | 0.7325141 | 3.6309068 | 2.7850394 |
| LOC107965722 | uncharacterized LOC107965722 | 0.7321089 | 6.0970161 | -0.0442990 |
| LOC102654448 | endochitinase A-like | 0.7280061 | 22.2780483 | -0.2906263 |
| LOC410685 | inactive tyrosine-protein kinase 7-like | 0.7280031 | 5.6155456 | 0.3181047 |
| LOC107964178 | uncharacterized LOC107964178 | 0.7259378 | 39.3531055 | 1.2835532 |
| LOC100577347 | SET and MYND domain-containing protein 4-like | 0.7247625 | 20.0606745 | 1.5911798 |
| LOC410621 | multiple epidermal growth factor-like domains protein 10 | 0.7202200 | 12.3957343 | 2.3144451 |
| LOC408884 | transcription factor SOX-5 | 0.7159568 | 82.1124845 | 5.2529432 |
| LOC100577023 | tyrosine-protein phosphatase 69D-like | 0.7152794 | 5.6713798 | 1.2524599 |
| LOC725273 | uncharacterized LOC725273 | 0.7070318 | 15.3520556 | 0.5486050 |
| LOC100578282 | uncharacterized LOC100578282 | 0.7060401 | 23.2271773 | 3.1242148 |
| LOC410417 | receptor-type tyrosine-protein phosphatase kappa-like | 0.7057359 | 14.8363483 | 1.8955141 |
| LOC408394 | collagen alpha-1(I) chain-like | 0.7032442 | 16.2905370 | -1.3530695 |
| LOC411986 | uncharacterized LOC411986 | 0.7022227 | 27.4350241 | 3.7059059 |
| LOC100577515 | uncharacterized LOC100577515 | 0.7013128 | 0.3465809 | 0.1435623 |
| LOC413697 | PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK-like | 0.6997501 | 28.3797550 | 10.6143421 |
| LOC408937 | SPARC | 0.6990347 | 48.1286127 | 8.2096688 |
| LOC409619 | uncharacterized LOC409619 | 0.6986559 | 18.3084262 | 4.6474514 |
| LOC410637 | nuclear receptor coactivator 3-like | 0.6984678 | 74.7211359 | 6.4612596 |
| LOC724269 | connectin | 0.6971638 | 50.5554123 | 2.3598870 |
| LOC410371 | calcium-transporting ATPase sarcoplasmic/endoplasmic reticulum type | 0.6970507 | 51.5423316 | 9.1354337 |
| LOC725799 | uncharacterized LOC725799 | 0.6953146 | 2.8950269 | 1.3545694 |
| LOC409536 | arginine-glutamic acid dipeptide repeats protein | 0.6952491 | 83.9081864 | 6.0450926 |
| LOC408551 | collagen alpha-5(IV) chain | 0.6896381 | 36.8695218 | 5.4097072 |
| LOC552545 | division abnormally delayed protein | 0.6875360 | 80.8873113 | 5.1706967 |
| LOC408343 | potassium voltage-gated channel protein Shaker | 0.6853634 | 59.8330559 | 3.3867382 |
| LOC102654893 | uncharacterized LOC102654893 | 0.6823108 | 18.7448960 | -1.0422949 |
| LOC100576746 | uncharacterized LOC100576746 | 0.6816091 | 6.7307513 | -0.1682002 |
| LOC100576233 | titin-like | 0.6802412 | 69.4193954 | 5.7300651 |
| LOC100577486 | uncharacterized LOC100577486 | 0.6799707 | 69.8768644 | 4.5345130 |
| LOC726469 | lysine-specific histone demethylase 1A | 0.6794721 | 23.2658218 | 0.8650202 |
| LOC552217 | uncharacterized LOC552217 | 0.6789158 | 0.9545579 | 3.3817072 |
| LOC107964682 | uncharacterized LOC107964682 | 0.6737784 | 0.8681759 | -1.7860914 |
| LOC412795 | protocadherin-15 | 0.6734834 | 73.3225167 | 3.4116108 |
| LOC412968 | putative epidermal cell surface receptor | 0.6729307 | 37.0789698 | 2.1040745 |
| LOC100576164 | uncharacterized LOC100576164 | 0.6689314 | 11.4303943 | 0.2776862 |
| LOC100576236 | uncharacterized LOC100576236 | 0.6685709 | 5.8050095 | 3.8991490 |
| LOC102655961 | uncharacterized LOC102655961 | 0.6676165 | 21.0718730 | 0.0341600 |
| LOC107964039 | uncharacterized LOC107964039 | 0.6660352 | 60.0203764 | 4.1811747 |
| LOC725144 | uncharacterized LOC725144 | 0.6575998 | 5.9322159 | 1.7096510 |
| LOC724679 | uncharacterized LOC724679 | 0.6572317 | 16.0776245 | 4.6160123 |
| LOC552735 | uncharacterized LOC552735 | 0.6560018 | 33.7408237 | 3.3022705 |
| LOC551506 | sex combs reduced | 0.6558431 | 8.0696090 | 1.4355741 |
| LOC408362 | alpha-tocopherol transfer protein | 0.6547248 | 5.2271197 | 2.1084610 |
| LOC408696 | uncharacterized LOC408696 | 0.6539592 | 24.8022785 | 4.5594633 |
| LOC408729 | uncharacterized LOC408729 | 0.6519078 | 22.1900162 | 0.8106041 |
| LOC107964004 | uncharacterized LOC107964004 | 0.6484780 | 2.9693103 | -0.1989507 |
| LOC107965914 | histone-lysine N-methyltransferase SETMAR-like | 0.6467224 | 17.7042930 | 4.6480420 |
| LOC413048 | bifunctional 3’-phosphoadenosine 5’-phosphosulfate synthase 2-like | 0.6461306 | 10.0538600 | 1.9819320 |
| LOC410061 | type I inositol 3,4-bisphosphate 4-phosphatase | 0.6459554 | 31.8249528 | 5.1564045 |
| LOC409908 | tyrosine-protein kinase CSK | 0.6455878 | 66.6781195 | 8.3206826 |
| LOC725714 | RNA-binding protein 25-like | 0.6444295 | 7.8390267 | 2.0551230 |
| LOC725189 | protein bric-a-brac 1-like | 0.6423123 | 52.3689221 | 4.6662232 |
| LOC408367 | NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial | 0.6395970 | 29.5408167 | 8.5253483 |
| Amih | hyperpolarization-activated ion channel | 0.6393806 | 63.4973824 | 4.4346506 |
| LOC102655726 | uncharacterized LOC102655726 | 0.6357394 | 16.8688638 | 1.8416117 |
| LOC100578159 | zinc finger matrin-type protein CG9776-like | 0.6347480 | 71.7926601 | 6.1907512 |
| LOC413423 | hemicentin-2 | 0.6318292 | 1.2221208 | -0.9776038 |
| LOC551167 | multidrug resistance protein homolog 49 | 0.6310844 | 62.4007766 | 6.9076765 |
| LOC409714 | mucin-5AC | 0.6302105 | 31.0895682 | 3.5806259 |
| LOC100576935 | uncharacterized LOC100576935 | 0.6301546 | 2.9821728 | -0.6602137 |
| LOC107964131 | uncharacterized LOC107964131 | 0.6282843 | 3.7270512 | 0.3908076 |
| LOC107965910 | uncharacterized LOC107965910 | 0.6278676 | 18.8533624 | 1.3772517 |
| LOC726987 | uncharacterized LOC726987 | 0.6262276 | 3.1157264 | 3.9128326 |
| LOC409843 | myosin heavy chain, muscle | 0.6260389 | 53.5988624 | 7.8645023 |
| LOC100578439 | chascon-like | 0.6250931 | 37.7309586 | 2.7914376 |
| LOC408874 | uncharacterized LOC408874 | 0.6247540 | 35.5604750 | 5.6701040 |
| LOC102655432 | uncharacterized LOC102655432 | 0.6240620 | 20.7900750 | 3.4797511 |
| LOC408435 | POU domain, class 6, transcription factor 2 | 0.6226703 | 14.3939696 | 3.5527447 |
| LOC107965315 | uncharacterized LOC107965315 | 0.6225920 | 3.9204987 | 0.8401343 |
| LOC102654353 | alpha-(1,3)-fucosyltransferase C | 0.6215493 | 81.6287785 | 5.9300833 |
| LOC408670 | Down syndrome cell adhesion molecule-like protein Dscam2 | 0.6184037 | 19.0672069 | 2.6028238 |
| LOC411079 | protein grainyhead | 0.6175445 | 20.6425596 | 0.8385096 |
| LOC409729 | zinc finger protein 608-like | 0.6125224 | 61.1750004 | 8.0131781 |
| LOC725117 | protein sprouty homolog 2 | 0.6124663 | 52.6058250 | 6.8044331 |
| LOC412801 | mediator of RNA polymerase II transcription subunit 12-like | 0.6114831 | 23.0183094 | 3.4814670 |
| LOC551792 | cytosolic carboxypeptidase 1-like | 0.6112583 | 15.9219301 | 2.5652298 |
| LOC102655479 | apoptosis-stimulating of p53 protein 2-like | 0.6088103 | 82.7003848 | 4.9305540 |
| LOC102653599 | uncharacterized LOC102653599 | 0.6082713 | 6.4656095 | 12.1438928 |
| LOC410006 | uncharacterized LOC410006 | 0.6078486 | 3.5771990 | 1.7053140 |
| LOC408508 | uncharacterized LOC408508 | 0.6050633 | 39.4473711 | 1.7762126 |
| LOC410577 | acid sphingomyelinase-like phosphodiesterase 3a | 0.6041300 | 13.5820277 | 1.5666765 |
| LOC409539 | microtubule-associated protein tau-like | 0.6040500 | 23.1110192 | 2.3655422 |
| LOC412254 | BUB3-interacting and GLEBS motif-containing protein ZNF207 | 0.6038168 | 62.9938002 | 4.1705566 |
| LOC412256 | nucleosome-remodeling factor subunit NURF301 | 0.6035105 | 35.6792450 | 7.8098158 |
| LOC409759 | serine-rich adhesin for platelets-like | 0.6018953 | 78.3571226 | 3.5862933 |
| LOC725422 | box A-binding factor-like | 0.6006039 | 58.4624140 | 3.8649197 |
| LOC107964554 | uncharacterized LOC107964554 | 0.5996747 | 28.8570054 | -0.4893616 |
| Apime-ASTA | allatostatin A | 0.5965127 | 30.5744677 | 0.6750093 |
| LOC726547 | protein abrupt | 0.5945928 | 32.5781561 | 5.6673225 |
| LOC408446 | probable aconitate hydratase, mitochondrial | 0.5937009 | 54.4878536 | 8.9041361 |
| LOC107965594 | uncharacterized LOC107965594 | 0.5920465 | 14.3904458 | -0.0522907 |
| LOC724724 | ATP-dependent 6-phosphofructokinase | 0.5912935 | 24.6097991 | 8.5016778 |
| LOC408669 | uncharacterized protein KIAA0930 homolog | 0.5893226 | 42.2467410 | 2.4870632 |
| LOC409981 | titin homolog | 0.5890039 | 20.6336013 | 1.2170686 |
| LOC410658 | LIM/homeobox protein Lhx3 | 0.5884243 | 6.3801581 | -1.6395682 |
| LOC102653778 | uncharacterized LOC102653778 | 0.5836338 | 16.8277606 | -2.4518180 |
| LOC410736 | uncharacterized LOC410736 | 0.5829171 | 47.4976239 | 1.4693170 |
| LOC412997 | DDB1- and CUL4-associated factor 10 | 0.5793826 | 39.5118571 | 5.7629605 |
| Dscam | Down syndrome cell adhesion molecule | 0.5788090 | 35.2860836 | 2.8155088 |
| LOC408960 | protein slit | 0.5742693 | 32.9463477 | 2.3789465 |
| LOC410745 | glucose dehydrogenase [FAD, quinone] | 0.5734081 | 26.3639793 | 0.9246283 |
| TpnT | troponin T, skeletal muscle | 0.5685675 | 50.2389284 | 7.7603633 |
| LOC107965610 | uncharacterized LOC107965610 | 0.5677902 | 12.7323687 | 3.1061287 |
| LOC409025 | apolipoprotein D | 0.5670915 | 28.7358085 | 5.0130493 |
| LOC107965515 | uncharacterized LOC107965515 | 0.5667265 | 26.4926658 | 5.6895554 |
| LOC725960 | neurofilament heavy polypeptide | 0.5667067 | 45.5931527 | 5.2541267 |
| LOC102655731 | uncharacterized LOC102655731 | 0.5655458 | 0.4636732 | -0.2684455 |
| AChE-2 | acetylcholinesterase 2 | 0.5647554 | 13.7143069 | 4.4373702 |
| LOC410497 | guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1 | 0.5636887 | 35.2912565 | 7.3066332 |
| LOC410545 | CLIP-associating protein 1-A | 0.5607170 | 42.4489542 | 6.2997791 |
| LOC411113 | solute carrier family 12 member 4 | 0.5600264 | 53.1941694 | 6.0133651 |
| arm | armadillo segment polarity protein | 0.5582718 | 35.2467421 | 5.8251090 |
| LOC552195 | uncharacterized LOC552195 | 0.5546028 | 52.5729305 | 4.6989702 |
| LOC724421 | fibrillin-2 | 0.5498619 | 20.1968518 | 4.9200005 |
| LOC409881 | myosin regulatory light chain 2 | 0.5496793 | 22.7346812 | 10.0604401 |
| LOC410758 | zinc finger protein 36, C3H1 type-like 3 | 0.5470398 | 30.8275722 | 5.1664753 |
| LOC408725 | protein sickie-like | 0.5456826 | 2.7652738 | -0.7267872 |
| LOC551623 | polyadenylate-binding protein RBP45C-like | 0.5449976 | 10.4765137 | 2.6575200 |
| LOC409674 | uncharacterized LOC409674 | 0.5445703 | 30.4686407 | 3.0045117 |
| LOC724851 | LIM domain only protein 3-like | 0.5423712 | 38.5242829 | 2.7674718 |
| LOC102656720 | uncharacterized LOC102656720 | 0.5413134 | 47.0210377 | 3.2807870 |
| LOC552466 | filamin-A-like | 0.5412431 | 72.2949842 | 7.5459191 |
| LOC409854 | nuclease-sensitive element-binding protein 1 | 0.5410835 | 39.5092714 | 8.9044821 |
| LOC411159 | uncharacterized LOC411159 | 0.5401878 | 12.4160215 | 1.5213255 |
| LOC413029 | serine/threonine-protein kinase OSR1-like | 0.5399995 | 25.0839469 | 6.5761739 |
| LOC552844 | complexin | 0.5370284 | 36.6522157 | 1.6714067 |
| LOC410233 | extracellular sulfatase SULF-1 homolog | 0.5368855 | 12.7766153 | 2.1393407 |
| LOC100576247 | frizzled 2 | 0.5360450 | 46.1188997 | 4.0902445 |
| LOC410893 | transcription factor AP-2-epsilon | 0.5349766 | 26.6167071 | 3.2202172 |
| LOC726868 | uncharacterized LOC726868 | 0.5343878 | 42.4607874 | 3.4726681 |
| LOC412840 | homeobox protein caupolican-like | 0.5327119 | 60.2292349 | 3.4795902 |
| LOC725754 | zinc finger protein castor homolog 1-like | 0.5312870 | 9.2001605 | 3.1010421 |
| LOC725413 | fibrillin-1-like | 0.5292328 | 5.7660454 | 2.6940001 |
| LOC408649 | uncharacterized LOC408649 | 0.5275494 | 25.7838480 | 2.9711155 |
| LOC408365 | uncharacterized LOC408365 | 0.5272989 | 16.0736178 | 1.4876340 |
| LOC107965666 | uncharacterized LOC107965666 | 0.5267988 | 1.5441865 | -1.8140983 |
| LOC412088 | flocculation protein FLO11 | 0.5262093 | 3.8730911 | 0.5480369 |
| LOC727081 | uncharacterized LOC727081 | 0.5253922 | 49.1655619 | 2.4468041 |
| LOC410589 | semaphorin-5A | 0.5252102 | 31.2264039 | 2.5680630 |
| LOC102656585 | CD151 antigen-like | 0.5241864 | 68.9802730 | 3.5636111 |
| LOC726457 | flocculation protein FLO11-like | 0.5241302 | 9.5634901 | 0.0748854 |
| LOC412865 | collagen alpha-2(IX) chain | 0.5236251 | 21.8425394 | 2.4550826 |
| LOC411597 | hemocytin | 0.5234496 | 52.8077146 | 5.9452034 |
| LOC413912 | constitutive coactivator of PPAR-gamma-like protein 1 | 0.5232571 | 34.2865494 | 6.6771431 |
| LOC724594 | ADP-ribosylation factor-like protein 4C | 0.5224383 | 17.3958879 | -0.3088410 |
| LOC107964940 | uncharacterized LOC107964940 | 0.5215511 | 13.3016908 | 0.0023124 |
| LOC107965147 | uncharacterized LOC107965147 | 0.5199260 | 22.2591710 | 5.3601921 |
| LOC409658 | uncharacterized LOC409658 | 0.5192188 | 76.1660094 | 4.9952055 |
| LOC550958 | uncharacterized LOC550958 | 0.5188300 | 3.8768787 | 2.3159851 |
| LOC107965429 | uncharacterized LOC107965429 | 0.5170550 | 4.7899112 | 0.0003201 |
| LOC408869 | lissencephaly-1 homolog | 0.5169801 | 53.3066885 | 7.1346578 |
| LOC408797 | nidogen-2 | 0.5151176 | 42.2712865 | 3.8394946 |
| LOC411049 | glutamate receptor ionotropic, kainate 2 | 0.5123108 | 33.8766363 | 3.6444012 |
| LOC550799 | DAZ-associated protein 2-like | 0.5119810 | 75.9292080 | 8.7922817 |
| LOC410689 | ELAV-like protein 2 | 0.5116314 | 25.9609690 | 3.6643426 |
| LOC100576882 | uncharacterized LOC100576882 | 0.5079020 | 5.6445474 | 0.7789441 |
| LOC409167 | translation elongation factor 2 | 0.5071072 | 44.8091580 | 10.4831972 |
| LOC102654217 | histone-lysine N-methyltransferase SETMAR-like | 0.5069541 | 31.2425534 | 5.4379580 |
| LOC726729 | helix-loop-helix protein 11 | 0.5067987 | 22.4671513 | 1.1191583 |
| LOC408277 | uncharacterized LOC408277 | 0.5066399 | 6.2108913 | -0.6194759 |
| LOC412187 | broad-complex core protein isoforms 1/2/3/4/5-like | 0.5065428 | 36.0663851 | 5.0785522 |
| LOC102656939 | histone-lysine N-methyltransferase SETMAR-like | 0.5061513 | 19.9569435 | 5.1805376 |
| LOC100578600 | uncharacterized LOC100578600 | 0.5057266 | 59.2982625 | 2.3908330 |
| LOC411297 | insulin-like peptide receptor | 0.5051831 | 39.8876249 | 7.1300434 |
| LOC408332 | zinc finger protein 236-like | 0.5050589 | 26.6467322 | 5.4985135 |
| LOC726065 | uncharacterized LOC726065 | 0.5041557 | 44.6694647 | 4.6286856 |
| LOC409932 | b(0,+)-type amino acid transporter 1-like | 0.5030340 | 30.8275689 | 4.4353024 |
| LOC552342 | lysophospholipid acyltransferase 2 | 0.5019372 | 22.4509220 | 6.4845966 |
| LOC409921 | zinc finger protein Elbow-like | 0.5019139 | 46.6890463 | 1.5400149 |
| LOC551525 | uncharacterized LOC551525 | 0.5016380 | 11.7277891 | 1.5133473 |
| LOC409073 | equilibrative nucleoside transporter 4 | 0.5012776 | 8.2187829 | 2.8726509 |
| LOC413416 | protein bicaudal C homolog 1-B | 0.4975816 | 28.3650971 | 7.1409137 |
| LOC100577543 | fez family zinc finger protein 1-like | 0.4955876 | 48.2635291 | 2.3607386 |
| LOC410729 | putative serine protease K12H4.7 | 0.4939130 | 31.7951559 | 6.0046490 |
| LOC410562 | serine/threonine-protein kinase SBK1 | 0.4935322 | 13.4433663 | 0.7040872 |
| LOC107965146 | uncharacterized LOC107965146 | 0.4933416 | 69.6823200 | 3.0745884 |
| LOC411276 | hybrid signal transduction histidine kinase D | 0.4916469 | 21.7247231 | 3.4427726 |
| LOC410245 | urokinase-type plasminogen activator | 0.4895984 | 0.6424194 | 1.1843115 |
| LOC727129 | uncharacterized LOC727129 | 0.4886360 | 38.2037377 | 1.2675058 |
| LOC100577343 | uncharacterized LOC100577343 | 0.4883624 | 9.0607755 | 3.9259213 |
| LOC107964054 | uncharacterized LOC107964054 | 0.4876015 | 23.3421479 | -0.9794092 |
| LOC724442 | dentin sialophosphoprotein-like | 0.4867706 | 25.9927046 | 3.6425700 |
| LOC100578161 | apoptotic chromatin condensation inducer in the nucleus | 0.4867598 | 27.9447520 | 5.2845059 |
| LOC411277 | uncharacterized LOC411277 | 0.4866854 | 35.6514174 | 4.6195974 |
| LOC100577455 | golgin subfamily A member 6-like protein 22 | 0.4863755 | 23.4824132 | 4.8653361 |
| LOC410103 | partner of Y14 and mago-like | 0.4860488 | 57.9757128 | 7.0018489 |
| LOC102653921 | uncharacterized LOC102653921 | 0.4856493 | 34.8313594 | 3.7989488 |
| nanos | protein nanos | 0.4838715 | 29.7399955 | 5.3025934 |
| LOC107964499 | uncharacterized LOC107964499 | 0.4821985 | 26.1550354 | 5.1930252 |
| LOC410336 | dipeptidyl aminopeptidase-like protein 6 | 0.4815907 | 52.5087958 | 3.7739625 |
| LOC102654084 | tetraspanin-3-like | 0.4813122 | 1.6802031 | 3.7269873 |
| LOC726681 | protein cappuccino | 0.4802082 | 25.9132838 | 0.7459532 |
| LOC100577044 | histone-lysine N-methyltransferase SETMAR-like | 0.4775871 | 17.2612829 | 4.8993453 |
| LOC724934 | paired mesoderm homeobox protein 2A | 0.4768142 | 9.7718113 | -0.3264172 |
| LOC408763 | homeobox protein extradenticle | 0.4749732 | 44.5805858 | 6.5108539 |
| LOC726225 | aldose 1-epimerase-like | 0.4736466 | 2.8450051 | 3.4074858 |
| LOC727232 | uncharacterized LOC727232 | 0.4715980 | 53.0916129 | 3.9948338 |
| LOC408945 | sorting nexin-27 | 0.4700284 | 6.6073592 | 3.6652340 |
| LOC551973 | cleavage and polyadenylation specificity factor subunit CG7185 | 0.4699249 | 33.2417766 | 4.2404639 |
| LOC100577537 | uncharacterized LOC100577537 | 0.4680308 | 0.3497472 | -0.0341730 |
| LOC725038 | protein NPC2 homolog | 0.4672838 | 42.6979200 | 6.6209476 |
| LOC410918 | protein tramtrack, beta isoform | 0.4668133 | 62.5896290 | 6.2353708 |
| LOC551460 | homeobox protein cut | 0.4649062 | 31.8053109 | -0.1987278 |
| LOC413448 | raf homolog serine/threonine-protein kinase phl | 0.4643983 | 22.6080920 | 5.4083533 |
| LOC107965443 | uncharacterized LOC107965443 | 0.4624323 | 27.6931749 | 1.4807603 |
| LOC107965635 | uncharacterized LOC107965635 | 0.4620326 | 1.6462399 | -0.7619533 |
| LOC413288 | polycomb protein Pcl | 0.4595948 | 19.9667558 | 5.6411490 |
| LOC409607 | ubiquitin-conjugating enzyme E2 Q2 | 0.4593620 | 36.3829403 | 7.6227966 |
| LOC725581 | anion exchange protein 2 | 0.4584406 | 18.2361397 | 4.6277062 |
| LOC410363 | uncharacterized LOC410363 | 0.4574174 | 12.0860992 | 2.0061453 |
| LOC107964173 | uncharacterized LOC107964173 | 0.4569645 | 9.4208119 | -2.1743062 |
| LOC413995 | sensory neuron membrane protein 1 | 0.4562581 | 1.0414111 | 3.9954921 |
| LOC102653850 | uncharacterized LOC102653850 | 0.4559130 | 1.3923760 | -1.1295594 |
| LOC408666 | uncharacterized LOC408666 | 0.4555474 | 40.8833404 | 7.0659642 |
| LOC409697 | filamin-like | 0.4550502 | 44.4011293 | 5.8742832 |
| LOC413025 | peroxidasin | 0.4531771 | 17.0538163 | 4.5784236 |
| LOC107966002 | uncharacterized LOC107966002 | 0.4529908 | 1.8549604 | -1.2987077 |
| LOC410307 | angiomotin-like protein 1 | 0.4529845 | 23.3964682 | 6.4346317 |
| LOC107964460 | uncharacterized LOC107964460 | 0.4526269 | 57.9982036 | 2.9930869 |
| LOC408942 | uncharacterized protein T19C3.4 | 0.4515342 | 19.8579187 | 5.4807403 |
| LOC551895 | serine/threonine-protein kinase 17A-like | 0.4510648 | 20.9944561 | 4.0942548 |
| LOC552836 | uncharacterized LOC552836 | 0.4509839 | 3.6758823 | 0.9272276 |
| LOC408809 | diacylglycerol kinase theta | 0.4506090 | 19.5738825 | 4.3025528 |
| Glob1 | globin 1 | 0.4499165 | 12.4191293 | 7.1587301 |
| LOC413759 | SCY1-like protein 2 | 0.4485871 | 19.5130255 | 2.6978503 |
| LOC408292 | transcriptional coactivator YAP1 | 0.4471923 | 64.6653006 | 3.8642069 |
| LOC107965129 | uncharacterized LOC107965129 | 0.4471051 | 0.1905988 | -2.1252978 |
| LOC726184 | uncharacterized LOC726184 | 0.4459639 | 66.4796793 | 6.1179741 |
| LOC726991 | kinesin light chain | 0.4456028 | 37.0936505 | 7.1907869 |
| LOC552235 | histone-lysine N-methyltransferase E(z) | 0.4449661 | 38.6278110 | 6.8389814 |
| LOC410860 | battenin | 0.4440925 | 45.6076005 | 6.5758781 |
| LOC408616 | transcriptional enhancer factor TEF-1 | 0.4429347 | 63.3182528 | 6.3228409 |
| LOC724172 | neurobeachin | 0.4425200 | 44.0527946 | 6.8423332 |
| LOC408264 | netrin receptor UNC5C | 0.4416726 | 7.1480991 | 0.1358584 |
| LOC727429 | histone-lysine N-methyltransferase SETMAR-like | 0.4408794 | 23.6416761 | 6.5292752 |
| LOC409956 | uncharacterized LOC409956 | 0.4396138 | 37.7634985 | 8.0015482 |
| LOC410674 | heterogeneous nuclear ribonucleoprotein L | 0.4395654 | 27.9631341 | 4.3848363 |
| LOC107964315 | uncharacterized LOC107964315 | 0.4389321 | 6.3642859 | 0.8225832 |
| LOC412890 | A disintegrin and metalloproteinase with thrombospondin motifs 3-like | 0.4386222 | 44.3994658 | 3.8589714 |
| LOC726972 | uncharacterized LOC726972 | 0.4382492 | 13.1698876 | 4.9312093 |
| LOC726486 | uncharacterized LOC726486 | 0.4362861 | 83.4369053 | 7.6807720 |
| LOC102654740 | tetratricopeptide repeat protein 25-like | 0.4356622 | 14.9460311 | -2.2679024 |
| LOC107965164 | uncharacterized LOC107965164 | 0.4356495 | 2.8555316 | -0.5731240 |
| LOC412263 | endoplasmic reticulum aminopeptidase 2-like | 0.4355817 | 11.9573494 | 5.6125844 |
| LOC102656403 | histone-lysine N-methyltransferase SETMAR-like | 0.4349591 | 21.3997125 | 7.3910766 |
| LOC408741 | ras-related protein Rab-37 | 0.4345517 | 1.1410835 | 3.1045592 |
| LOC411744 | spectrin beta chain | 0.4341775 | 37.8907626 | 8.0225432 |
| LOC102654800 | histone-lysine N-methyltransferase SETMAR-like | 0.4336056 | 15.9133207 | 5.3499652 |
| LOC102655561 | sonic hedgehog protein A-like | 0.4333816 | 5.3932785 | -1.1821750 |
| LOC107964555 | uncharacterized LOC107964555 | 0.4333723 | 11.9308774 | 1.9037464 |
| Cox6c | cytochrome c oxidase subunit VIc | 0.4326286 | 39.6724190 | 8.2007072 |
| LOC552397 | Krueppel-like factor 6 | 0.4313806 | 42.4679502 | 6.0126500 |
| LOC410219 | pre-mRNA 3’-end-processing factor FIP1-like | 0.4281981 | 16.4191532 | 4.8340942 |
| LOC102654905 | uncharacterized LOC102654905 | 0.4262491 | 0.6185347 | 0.6347838 |
| LOC551086 | protein abrupt | 0.4256066 | 8.3644547 | 5.4937506 |
| LOC726587 | protein AF-10 | 0.4248966 | 38.3879826 | 7.7245804 |
| LOC411347 | peripheral plasma membrane protein CASK | 0.4223071 | 38.5221723 | 4.8534353 |
| LOC100578523 | protein glass-like | 0.4212144 | 13.3181205 | 5.2030556 |
| LOC412491 | double-stranded RNA-specific editase 1-like | 0.4202410 | 25.2965639 | 4.9597517 |
| LOC412059 | F-box only protein 11 | 0.4184543 | 7.3416702 | 5.7574197 |
| LOC410819 | uncharacterized LOC410819 | 0.4182864 | 6.9930355 | 3.7328804 |
| LOC409504 | flocculation protein FLO11-like | 0.4168184 | 33.1371758 | 3.6017752 |
| LOC102655004 | uncharacterized LOC102655004 | 0.4161651 | 10.3185064 | 1.1474685 |
| Mblk-1 | transcription factor mblk-1-like | 0.4160218 | 46.7278449 | 9.2984291 |
| LOC408408 | uncharacterized LOC408408 | 0.4130815 | 49.1108403 | 5.6894241 |
| LOC726495 | protein D2-like | 0.4129045 | 2.8942177 | 5.2354940 |
| LOC107964674 | uncharacterized LOC107964674 | 0.4092885 | 4.7356358 | -2.1938686 |
| LOC413786 | netrin-A-like | 0.4092727 | 18.1614105 | -0.0362624 |
| LOC552709 | polypyrimidine tract-binding protein 1 | 0.4082761 | 47.8264812 | 4.8785981 |
| LOC413738 | uncharacterized LOC413738 | 0.4080998 | 37.0962742 | 4.9896404 |
| LOC725625 | uncharacterized LOC725625 | 0.4079783 | 1.8395997 | 0.4881536 |
| LOC727455 | UBA-like domain-containing protein 2 | 0.4078972 | 83.7403545 | 6.8630571 |
| LOC408618 | furin-like protease 2 | 0.4071598 | 28.4431206 | 1.4868629 |
| LOC107964293 | zinc finger protein 628-like | 0.4061206 | 13.3214891 | 5.0757810 |
| LOC410956 | serine/threonine-protein kinase NLK | 0.4061026 | 12.1016051 | 5.3015804 |
| LOC724507 | RIB43A-like with coiled-coils protein 1 | 0.4055355 | 3.4768926 | -0.5433904 |
| LOC107964413 | uncharacterized LOC107964413 | 0.4049092 | 46.5975649 | 2.3727135 |
| LOC409665 | LIM domain and actin-binding protein 1 | 0.4036848 | 32.7286966 | 2.7221643 |
| LOC100577530 | uncharacterized LOC100577530 | 0.4017140 | 64.2207285 | 2.1424852 |
| LOC410498 | potassium voltage-gated channel subfamily H member 6 | 0.4016001 | 16.7000146 | 2.9138849 |
| LCCH3 | ligand-gated chloride channel homolog 3 | 0.4001890 | 1.2762438 | -1.1666482 |
| LOC409780 | CUGBP Elav-like family member 2 | 0.3992511 | 60.5179585 | 6.9968893 |
| LOC100577517 | uncharacterized LOC100577517 | 0.3976826 | 18.7763691 | 5.6328533 |
| LOC411238 | LIM domain-binding protein 2 | 0.3970724 | 14.4367117 | 1.5562068 |
| LOC552485 | glycylpeptide N-tetradecanoyltransferase 1 | 0.3964405 | 48.0238918 | 7.2640411 |
| LOC409789 | uncharacterized peptidase C1-like protein F26E4.3 | 0.3928256 | 18.5691335 | 2.3585918 |
| LOC413473 | GTPase-activating Rap/Ran-GAP domain-like protein 3 | 0.3904973 | 4.3897224 | 3.0267521 |
| LOC107965047 | uncharacterized LOC107965047 | 0.3888970 | 35.0714013 | 4.1643914 |
| LOC100578194 | uncharacterized LOC100578194 | 0.3880754 | 9.2291527 | 5.8035429 |
| LOC107964020 | alpha-tocopherol transfer protein-like | 0.3865744 | 3.5850816 | 2.6935951 |
| LOC725588 | uncharacterized LOC725588 | 0.3853234 | 49.0367420 | 6.3713473 |
| LOC100577896 | heat shock factor 2-binding protein-like | 0.3849053 | 1.5545986 | -0.5245801 |
| LOC552079 | homeobox protein homothorax | 0.3811959 | 21.7947211 | 2.4053414 |
| LOC551737 | synapsin | 0.3773225 | 15.8878217 | 2.5755630 |
| LOC726866 | uncharacterized LOC726866 | 0.3769560 | 20.0948692 | 4.3956932 |
| LOC727106 | heterogeneous nuclear ribonucleoprotein H | 0.3750578 | 41.0502804 | 6.3981264 |
| LOC552265 | rho GTPase-activating protein 32 | 0.3747107 | 26.6395655 | 4.5548821 |
| ACSF2 | acyl-CoA synthetase family member 2 | 0.3727199 | 5.7830708 | 3.0685163 |
| LOC408677 | titin | 0.3716590 | 63.3679545 | 4.3918138 |
| LOC410792 | TBC1 domain family member 22B | 0.3681978 | 36.5448956 | 7.2313865 |
| LOC100577632 | phosphopantothenoylcysteine decarboxylase subunit VHS3-like | 0.3680783 | 22.5917834 | 1.3031670 |
| LOC409027 | leucine-rich repeat and calponin homology domain-containing protein 1 | 0.3665299 | 30.2620157 | 3.5553791 |
| LOC107964285 | uncharacterized LOC107964285 | 0.3653615 | 4.5336146 | -1.8182151 |
| LOC408963 | pleckstrin homology domain-containing family G member 5-like | 0.3642991 | 49.9831425 | 4.5376376 |
| GluCl | glutamate-gated chloride channel | 0.3639810 | 17.7454547 | 5.4438479 |
| LOC100576336 | uncharacterized LOC100576336 | 0.3623700 | 45.6958814 | 4.0718135 |
| LOC100576805 | chromatin assembly factor 1 subunit A-B | 0.3623100 | 29.5601331 | 4.7276950 |
| LOC551904 | glycerol-3-phosphate dehydrogenase, mitochondrial | 0.3613637 | 16.3183750 | 8.5082875 |
| LOC409893 | protein alan shepard-like | 0.3574660 | 43.9289658 | 8.2293995 |
| LOC100577603 | uncharacterized LOC100577603 | 0.3563418 | 59.8575040 | 2.4904796 |
| LOC412108 | casein kinase I-like | 0.3559115 | 35.2443377 | 7.7413152 |
| LOC551272 | talin-1 | 0.3555996 | 16.6979438 | 2.2641375 |
| LOC724706 | myosin-10 | 0.3552718 | 35.1338318 | 5.0471212 |
| LOC724344 | probable Ras GTPase-activating protein | 0.3551582 | 14.7622743 | 4.8684032 |
| LOC408766 | phosphatidylcholine:ceramide cholinephosphotransferase 2-like | 0.3524577 | 34.4631750 | 7.0025846 |
| LOC724563 | uncharacterized LOC724563 | 0.3522561 | 70.8058337 | 3.0278921 |
| LOC409174 | mannosyl-oligosaccharide alpha-1,2-mannosidase IA | 0.3522182 | 39.1323797 | 6.1376780 |
| LOC409699 | 26S proteasome non-ATPase regulatory subunit 1-like | 0.3500432 | 67.7063389 | 4.1920762 |
| LOC107965057 | uncharacterized LOC107965057 | 0.3498028 | 65.3654454 | 4.8223446 |
| LOC410385 | methionine aminopeptidase 1 | 0.3471330 | 26.8633545 | 6.7425545 |
| LOC100577707 | arginine/serine-rich coiled-coil protein 2 | 0.3466250 | 51.5245736 | 6.2744410 |
| LOC410203 | POU domain protein CF1A | 0.3420331 | 23.1389022 | 2.2611938 |
| LOC551360 | transcription factor Ken | 0.3417572 | 54.9281675 | 4.9477170 |
| LOC406146 | hyaluronoglucosaminidase | 0.3414606 | 1.0210175 | 3.8789690 |
| LOC102654521 | uncharacterized LOC102654521 | 0.3404266 | 4.6815075 | 3.1096044 |
| LOC413791 | TBC1 domain family member 24 | 0.3403187 | 29.5763079 | 6.9302186 |
| LOC726913 | cytochrome b5-like | 0.3401192 | 23.6037845 | 4.7822457 |
| LOC409904 | uncharacterized LOC409904 | 0.3399164 | 37.3682835 | 4.9599114 |
| LOC409051 | microtubule-associated protein futsch | 0.3397620 | 63.1919163 | 8.2403027 |
| LOC107965124 | uncharacterized LOC107965124 | 0.3394781 | 36.2934133 | 3.1911142 |
| LOC102653940 | cyclin-dependent kinase inhibitor 1 | 0.3388948 | 62.3980128 | 7.2198148 |
| LOC408298 | maternal protein pumilio | 0.3382193 | 58.1854263 | 6.5249877 |
| LOC102655765 | dnaJ homolog subfamily C member 4-like | 0.3380158 | 16.3914675 | 3.1062194 |
| LOC409966 | dexamethasone-induced Ras-related protein 1 | 0.3379926 | 2.5761965 | 0.9943765 |
| LOC411147 | AP-2 complex subunit alpha | 0.3373890 | 39.7075388 | 7.3739192 |
| LOC100578292 | histone-lysine N-methyltransferase SETMAR-like | 0.3368561 | 1.2890546 | 3.5782795 |
| LOC727546 | uncharacterized LOC727546 | 0.3364163 | 2.8760792 | -1.7323231 |
| LOC408480 | PTB domain-containing engulfment adapter protein 1 | 0.3355155 | 13.1532776 | 7.4302608 |
| LOC408779 | short stop | 0.3346591 | 47.5567917 | 6.5177907 |
| LOC410938 | polypeptide N-acetylgalactosaminyltransferase 13 | 0.3343916 | 23.3355464 | 4.7555741 |
| LOC410741 | proton-coupled amino acid transporter 4 | 0.3317587 | 44.8218860 | 8.6831595 |
| LOC726063 | zinc finger protein 569-like | 0.3315588 | 25.5496172 | 7.0430774 |
| Mir6060 | microRNA 6060 | 0.3306785 | 2.1758674 | -1.3171190 |
| LOC107965097 | uncharacterized LOC107965097 | 0.3303295 | 18.8685366 | 3.7240408 |
| LOC725555 | eukaryotic peptide chain release factor subunit 1 | 0.3295501 | 62.0720424 | 6.7297924 |
| LOC408552 | collagen alpha-1(IV) chain | 0.3285198 | 24.5276777 | 6.5803834 |
| LOC100576640 | uncharacterized LOC100576640 | 0.3285005 | 22.5723873 | 6.4549197 |
| LOC551448 | ribose-phosphate pyrophosphokinase 1 | 0.3274367 | 0.4682081 | 8.2008788 |
| LOC408430 | voltage-dependent L-type calcium channel subunit beta-2 | 0.3247563 | 35.5123387 | 4.6958626 |
| LOC410004 | transcription initiation factor TFIID subunit 10-like | 0.3244925 | 58.0968272 | 4.3599871 |
| LOC413103 | cysteine and histidine-rich protein 1 homolog | 0.3224463 | 41.7701242 | 4.1983306 |
| LOC100577409 | solute carrier organic anion transporter family member 3A1 | 0.3218902 | 35.7717056 | 4.5649977 |
| LOC408645 | glutamate receptor, ionotropic, kainate 2 | 0.3210007 | 1.7170370 | 2.7850896 |
| LOC100577440 | uncharacterized LOC100577440 | 0.3209153 | 22.1159659 | 4.1337071 |
| LOC410439 | basement membrane-specific heparan sulfate proteoglycan core protein-like | 0.3207985 | 14.3080897 | 4.0818223 |
| LOC724312 | vanin-like protein 1 | 0.3199618 | 3.3606862 | 6.9205392 |
| LOC413427 | uncharacterized LOC413427 | 0.3196507 | 71.7486957 | 3.6461459 |
| LOC726472 | prohormone-3 | 0.3182785 | 5.1017557 | 3.2897394 |
| LOC408465 | vesicle-associated membrane protein 2 | 0.3178818 | 15.5288064 | 5.2375404 |
| LOC413569 | tyrosine-protein phosphatase Lar | 0.3174171 | 42.2033019 | 3.8981935 |
| LOC410092 | dual oxidase maturation factor 1 | 0.3169453 | 19.9505869 | 3.2598096 |
| LOC408801 | protein split ends | 0.3163413 | 62.1181892 | 5.8311494 |
| LOC411083 | sodium/potassium-transporting ATPase subunit alpha | 0.3148439 | 88.4482596 | 8.1161213 |
| LOC409849 | immunoglobulin-like and fibronectin type III domain containing 12 | 0.3143551 | 19.1508160 | 6.2416287 |
| LOC100577377 | uncharacterized LOC100577377 | 0.3137785 | 2.7739227 | 0.0438048 |
| LOC413510 | SNF-related serine/threonine-protein kinase | 0.3124024 | 17.8040625 | 5.2273936 |
| LOC102655950 | peroxisome biogenesis factor 2 | 0.3118318 | 12.3394487 | 4.6407610 |
| LOC724835 | protein eva-1 | 0.3113614 | 7.1153149 | 3.2335013 |
| LOC107964999 | uncharacterized LOC107964999 | 0.3089406 | 5.4776945 | 3.4636128 |
| LOC102656221 | uncharacterized LOC102656221 | 0.3072756 | 0.4321009 | -1.8789298 |
| LOC409602 | circadian clock-controlled protein-like | 0.3055030 | 1.0141655 | 9.5098322 |
| LOC102655814 | ras-related and estrogen-regulated growth inhibitor | 0.3053828 | 18.5092056 | 4.8818786 |
| LOC409347 | U4/U6.U5 tri-snRNP-associated protein 1 | 0.3052075 | 19.5166949 | 4.9209025 |
| LOC107964641 | uncharacterized LOC107964641 | 0.3043412 | 0.4671807 | -0.0617361 |
| LOC725893 | uncharacterized LOC725893 | 0.3040555 | 53.1851098 | 4.3503923 |
| LOC410831 | casein kinase I | 0.3018896 | 20.5480728 | 5.3177036 |
| LOC726947 | TGF-beta-activated kinase 1 and MAP3K7-binding protein 3 | 0.3017797 | 15.3534864 | 3.2651018 |
| LOC724237 | prostaglandin E2 receptor EP3 subtype | 0.3016904 | 54.7566117 | 2.8076200 |
| LOC551709 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1 | 0.3009552 | 15.1086959 | 3.8342267 |
| LOC411126 | broad-complex core protein isoforms 1/2/3/4/5 | 0.3006782 | 24.6490835 | 5.1348405 |
| LOC102656579 | UPF0488 protein CG14286 | 0.3002477 | 24.5315261 | 3.2461951 |
| LOC102653963 | uncharacterized LOC102653963 | 0.2985644 | 65.6671572 | 6.7790229 |
| LOC552649 | elongation factor 1-beta’ | 0.2976778 | 3.7986590 | 6.1130083 |
| LOC552012 | SH2B adapter protein 1 | 0.2974280 | 9.3607340 | 2.8524769 |
| LOC413005 | protein NDRG3 | 0.2961807 | 38.7701251 | 6.7143786 |
| LOC726322 | uncharacterized LOC726322 | 0.2948435 | 3.2050054 | 2.4041483 |
| LOC724652 | uncharacterized LOC724652 | 0.2942242 | 34.8986655 | 3.1858174 |
| LOC725991 | sodium/potassium-transporting ATPase subunit beta-2-like | 0.2940091 | 17.1272797 | 5.6987266 |
| LOC725263 | tumor protein p53-inducible nuclear protein 2-like | 0.2937349 | 49.1234082 | 8.4150368 |
| LOC551649 | nuclear receptor subfamily 2 group F member 6 | 0.2933858 | 14.1340587 | 1.4701898 |
| LOC409649 | solute carrier organic anion transporter family member 5A1 | 0.2926733 | 14.0550133 | 5.3152346 |
| LOC408705 | RNA-binding protein 25-like | 0.2839210 | 19.4191618 | 5.5210858 |
| LOC410278 | putative inorganic phosphate cotransporter | 0.2831814 | 63.2123152 | 6.7269135 |
| LOC102654355 | uncharacterized LOC102654355 | 0.2815294 | 31.3383866 | 2.4355946 |
| LOC409961 | heterogeneous nuclear ribonucleoprotein 27C | 0.2810996 | 28.7483278 | 4.5388240 |
| LOC552278 | protein-tyrosine sulfotransferase | 0.2808879 | 27.9209167 | 3.8883943 |
| LOC100577704 | uncharacterized LOC100577704 | 0.2807105 | 11.1457256 | 1.5918658 |
| LOC409470 | zinc finger protein 271-like | 0.2790379 | 38.8962202 | 7.1150203 |
| LOC100577889 | uncharacterized LOC100577889 | 0.2790227 | 17.8435229 | 5.9887153 |
| LOC102655500 | dual specificity tyrosine-phosphorylation-regulated kinase 2-like | 0.2783821 | 13.4183912 | 2.0374493 |
| LOC727055 | 28S ribosomal protein S31, mitochondrial | 0.2783042 | 47.2683604 | 5.6765057 |
| LOC726199 | tumor protein D53 homolog | 0.2775478 | 44.4953291 | 8.3654982 |
| LOC724412 | muscle segmentation homeobox | 0.2768070 | 11.6695300 | 1.9007164 |
| Mir6058 | microRNA 6058 | 0.2732923 | 4.8855209 | -1.0378584 |
| LOC100577903 | uncharacterized protein MAL13P1.304-like | 0.2732012 | 31.5316597 | 6.4381424 |
| LOC102655807 | uncharacterized LOC102655807 | 0.2713847 | 19.7803179 | 0.7347393 |
| Reck | reversion-inducing-cysteine-rich protein with kazal motifs | 0.2713714 | 61.0672887 | 3.2199595 |
| LOC100577150 | uncharacterized LOC100577150 | 0.2704833 | 1.9057809 | 0.4184943 |
| LOC551123 | RNA-binding protein Musashi homolog Rbp6 | 0.2694714 | 61.9724731 | 3.2582374 |
| LOC411175 | protein groucho-1-like | 0.2683927 | 25.6504533 | 2.6319909 |
| LOC408953 | peroxidase | 0.2679753 | 47.9986173 | 11.5493626 |
| LOC411457 | galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase P | 0.2677812 | 10.6373307 | 6.9248461 |
| LOC410424 | pyruvate dehydrogenase (acetyl-transferring) kinase, mitochondrial | 0.2661234 | 17.1158853 | 4.8102779 |
| LOC102655352 | uncharacterized LOC102655352 | 0.2656191 | 8.2444836 | 0.7052313 |
| LOC102655358 | uncharacterized LOC102655358 | 0.2627190 | 0.7514488 | 0.9654421 |
| LOC102655431 | uncharacterized LOC102655431 | 0.2624774 | 0.1134013 | 2.3794269 |
| LOC102655968 | uncharacterized LOC102655968 | 0.2621128 | 0.5279360 | 1.4035652 |
| LOC409166 | E3 ubiquitin-protein ligase TRIM23-like | 0.2611111 | 14.5135869 | 6.6000176 |
| LOC100577504 | uncharacterized LOC100577504 | 0.2603875 | 26.2449632 | 3.0310231 |
| LOC100577092 | uncharacterized LOC100577092 | 0.2602594 | 9.4241440 | 0.5322744 |
| LOC551717 | putative uncharacterized protein DDB_G0287265 | 0.2596479 | 0.3477636 | 1.4102104 |
| LOC412330 | ubiquitin-conjugating enzyme E2 H | 0.2595202 | 62.6997433 | 8.7064778 |
| LOC552031 | chromodomain-helicase-DNA-binding protein Mi-2 homolog | 0.2594340 | 12.3421868 | 6.9291011 |
| LOC408664 | homeodomain-interacting protein kinase 2 | 0.2565139 | 38.2474690 | 7.6360618 |
| LOC107965038 | zinc transporter 2-like | 0.2556505 | 3.6059248 | 4.9583830 |
| LOC411586 | uncharacterized LOC411586 | 0.2552443 | 18.1550149 | 6.4867424 |
| LOC100578540 | coiled-coil-helix-coiled-coil-helix domain-containing protein 2-like | 0.2549549 | 0.8844530 | -0.0010207 |
| LOC551774 | acidic leucine-rich nuclear phosphoprotein 32 family member B | 0.2546331 | 18.2070617 | 7.8393811 |
| LOC410487 | uncharacterized LOC410487 | 0.2530178 | 68.9948979 | 5.2019419 |
| LOC408311 | catenin delta-2 | 0.2518106 | 31.8692998 | 2.7921901 |
| LOC411326 | centromere-associated protein E | 0.2503000 | 18.0162085 | 8.0119478 |
| LOC409486 | RNA-binding protein 4.1-like | 0.2497813 | 26.4295389 | 6.2625063 |
| LOC724737 | trichohyalin-like | 0.2495699 | 4.7314819 | 5.9418690 |
| LOC409774 | testican-1 | 0.2492862 | 42.0575467 | 7.0104552 |
| LOC551628 | protein borderless | 0.2492449 | 0.6543551 | 1.5318986 |
| LOC408905 | uncharacterized LOC408905 | 0.2476828 | 11.3785131 | 4.0996332 |
| LOC107964969 | uncharacterized LOC107964969 | 0.2474744 | 20.1114662 | 4.3289384 |
| LOC726461 | SH3 and multiple ankyrin repeat domains protein 1 | 0.2460409 | 31.4570025 | 6.2916194 |
| LOC726350 | putative ATP-dependent RNA helicase DHX33 | 0.2450993 | 0.7014188 | 0.2425760 |
| LOC408900 | tyrosine-protein phosphatase non-receptor type 61F-like | 0.2419910 | 24.7925737 | 7.2210216 |
| LOC100578227 | uncharacterized LOC100578227 | 0.2412889 | 0.8913658 | 0.4698885 |
| LOC410867 | uncharacterized LOC410867 | 0.2407879 | 55.4899916 | 6.2108570 |
| LOC408951 | 14-3-3 protein epsilon | 0.2399115 | 40.2474675 | 8.2206228 |
| LOC414025 | zinc finger protein Noc-like | 0.2393670 | 18.6165496 | 3.7801315 |
| LOC100577364 | FERM, RhoGEF and pleckstrin domain-containing protein 1-like | 0.2388990 | 48.9031974 | 4.1628422 |
| LOC408685 | MAP7 domain-containing protein 1 | 0.2362098 | 74.8692681 | 9.7095780 |
| LOC107965613 | uncharacterized LOC107965613 | 0.2352884 | 8.1451211 | 2.4386413 |
| LOC551969 | serine protease HTRA2, mitochondrial | 0.2347571 | 31.7739674 | 6.8808219 |
| LOC107965922 | histone-lysine N-methyltransferase SETMAR-like | 0.2340164 | 14.6698226 | 3.0154546 |
| LOC100576924 | ankyrin repeat and death domain-containing protein 1A-like | 0.2334118 | 17.9842553 | 3.7079061 |
| LOC408793 | histone acetyltransferase KAT7 | 0.2300593 | 15.1951457 | 4.6951068 |
| LOC725970 | protein still life, isoform SIF type 1-like | 0.2282165 | 4.6908517 | 2.7283680 |
| LOC414022 | ankyrin repeat domain-containing protein 12 | 0.2280528 | 30.2736328 | 6.1839302 |
| LOC551347 | UPF0605 protein CG18335-like | 0.2260932 | 36.2809657 | 3.5538364 |
| LOC410423 | uncharacterized LOC410423 | 0.2252604 | 72.6915153 | 5.7309500 |
| LOC410427 | serine/threonine-protein kinase 26 | 0.2249230 | 42.5376748 | 6.0456200 |
| LOC413134 | UNC93-like protein | 0.2247477 | 47.9509108 | 5.1153332 |
| LOC408374 | mucin-19 | 0.2245035 | 11.5912456 | 6.2137484 |
| LOC409882 | TLD domain-containing protein 2 | 0.2241665 | 22.2103658 | 8.1160913 |
| LOC409240 | HMG box-containing protein 4 | 0.2225509 | 26.5155735 | 6.5427083 |
| LOC725393 | protein TIS11 | 0.2218050 | 38.8772597 | 6.5483958 |
| LOC724315 | forkhead box protein D3-like | 0.2208787 | 9.4424126 | 1.8344594 |
| LOC102655088 | uncharacterized LOC102655088 | 0.2195945 | 1.4462940 | 2.2480621 |
| LOC408996 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase | 0.2189665 | 18.3926637 | 3.6227149 |
| LOC100578883 | uncharacterized LOC100578883 | 0.2177330 | 26.5905183 | 4.8395603 |
| E74 | ecdysteroid-regulated gene E74 | 0.2170894 | 13.0382038 | 4.8315729 |
| LOC551320 | uncharacterized LOC551320 | 0.2169892 | 20.3701789 | 4.3367435 |
| LOC107964790 | uncharacterized LOC107964790 | 0.2162482 | 7.4517979 | 2.7849241 |
| LOC107965784 | histone-lysine N-methyltransferase SETMAR-like | 0.2157444 | 10.1856923 | 5.8886706 |
| LOC725662 | uncharacterized LOC725662 | 0.2153916 | 40.7321237 | 7.8609766 |
| LOC410532 | solute carrier family 28 member 3 | 0.2144617 | 52.8541127 | 7.7704276 |
| LOC725235 | uncharacterized LOC725235 | 0.2142489 | 48.0433697 | 2.4493873 |
| LOC410837 | microsomal glutathione S-transferase 1 | 0.2102716 | 27.9999273 | 8.0416974 |
| LOC100577139 | AF4/FMR2 family member 4 | 0.2099963 | 62.5235042 | 8.1780345 |
| Obp12 | odorant binding protein 12 | 0.2096009 | 3.8177411 | 2.1831433 |
| LOC409327 | uncharacterized LOC409327 | 0.2090775 | 13.0968463 | 4.0623947 |
| LOC408944 | lysine-specific demethylase 3B | 0.2077116 | 45.4544599 | 7.6753254 |
| LOC726842 | optomotor-blind protein-like | 0.2061048 | 2.2452671 | -1.3139117 |
| LOC726124 | segmentation protein Runt-like | 0.2060490 | 3.9965297 | -0.9024702 |
| LOC408755 | probable DNA replication complex GINS protein PSF2 | 0.2056945 | 4.7738141 | 5.9857187 |
| LOC727159 | restin homolog | 0.2055947 | 47.0755589 | 5.0952849 |
| LOC551762 | adenosylhomocysteinase 2-like | 0.2054268 | 20.6331773 | 7.2673276 |
| LOC100578925 | protein Tob1-like | 0.2031819 | 54.0726911 | 8.3573249 |
| LOC724240 | flap endonuclease GEN | 0.2016564 | 8.5944290 | 4.6413378 |
| LOC552017 | alpha-catulin | 0.1976158 | 5.3842423 | 1.5996000 |
| LOC408890 | protein groucho-1 | 0.1969164 | 9.5841644 | 6.1389567 |
| LOC408676 | CREB-regulated transcription coactivator 1-like | 0.1952596 | 11.8208882 | 1.4487260 |
| LOC726323 | uncharacterized LOC726323 | 0.1952412 | 19.1816604 | 9.3193077 |
| LOC551663 | disintegrin and metalloproteinase domain-containing protein 11 | 0.1937249 | 12.0404696 | 2.0799909 |
| LOC727434 | WD repeat-containing protein 7-like | 0.1930156 | 41.5271949 | 4.2349868 |
| Ancr-1 | AncR-1 non-coding nuclear RNA | 0.1926582 | 29.1639094 | 9.6736015 |
| LOC551146 | glycine-rich protein DOT1 | 0.1920850 | 7.6867707 | 4.2469400 |
| LOC724899 | uncharacterized LOC724899 | 0.1920726 | 4.1358410 | 8.6871968 |
| LOC409007 | heterogeneous nuclear ribonucleoprotein K | 0.1913148 | 50.3306322 | 5.7926187 |
| LOC551319 | titin-like | 0.1912846 | 32.3358202 | 10.1358208 |
| LOC411299 | Golgi resident protein GCP60 | 0.1911876 | 38.7146847 | 7.2969363 |
| LOC409650 | solute carrier organic anion transporter family member 2A1 | 0.1907995 | 9.7083592 | 6.2448723 |
| LOC724270 | crustacean hyperglycemic hormones | 0.1898940 | 0.2676564 | 0.8040706 |
| LOC100578101 | uncharacterized LOC100578101 | 0.1887385 | 2.2272090 | 4.9973176 |
| LOC100576912 | cyclic AMP response element-binding protein A | 0.1884909 | 6.3585982 | 1.2710432 |
| LOC726818 | beta-hexosaminidase subunit beta-like | 0.1880836 | 9.5918352 | 4.3333163 |
| LOC410334 | uncharacterized LOC410334 | 0.1878730 | 22.8098704 | 1.2842821 |
| LOC412245 | acidic mammalian chitinase | 0.1878408 | 15.5200718 | 7.3157460 |
| LOC552728 | uncharacterized LOC552728 | 0.1877640 | 28.1927113 | 8.0475830 |
| LOC408908 | anoctamin-8 | 0.1866802 | 1.5811600 | 2.6898187 |
| LOC412949 | glutamate receptor ionotropic, kainate 5 | 0.1840070 | 50.8481895 | 4.7815477 |
| LOC107964833 | uncharacterized LOC107964833 | 0.1838304 | 1.7956768 | -0.4938790 |
| LOC724242 | protein neuralized | 0.1829734 | 16.3499652 | 3.5843121 |
| LOC100577298 | branched-chain-amino-acid aminotransferase, cytosolic-like | 0.1826553 | 0.5481066 | 7.7148148 |
| LOC100576536 | uncharacterized LOC100576536 | 0.1812868 | 20.8899113 | 4.1037439 |
| LOC410802 | microphthalmia-associated transcription factor | 0.1809516 | 69.3244563 | 5.1723108 |
| LOC411613 | buffy | 0.1809430 | 30.2336315 | 5.5251259 |
| LOC107964664 | uncharacterized LOC107964664 | 0.1807530 | 37.6753326 | 4.7323028 |
| LOC410580 | fragile X mental retardation syndrome-related protein 1 | 0.1804070 | 15.0689033 | 5.0570581 |
| LOC100578621 | uncharacterized LOC100578621 | 0.1803418 | 49.9823464 | 4.1502464 |
| LOC107964202 | uncharacterized LOC107964202 | 0.1794650 | 18.5257795 | 5.8477135 |
| LOC100578609 | uncharacterized LOC100578609 | 0.1793245 | 1.5455948 | -1.8397796 |
| LOC725703 | uncharacterized LOC725703 | 0.1791626 | 7.3656603 | 2.7228607 |
| LOC724634 | golgin subfamily B member 1 | 0.1789020 | 15.9545531 | 6.5195077 |
| LOC551031 | uncharacterized LOC551031 | 0.1747157 | 7.0977562 | 7.2290722 |
| LOC102656332 | uncharacterized LOC102656332 | 0.1745121 | 0.5172386 | 2.9092479 |
| LOC100576671 | polycomb group protein Psc-like | 0.1711050 | 13.0427938 | 2.0869558 |
| LOC100577422 | uncharacterized LOC100577422 | 0.1709292 | 9.7532709 | 2.9808861 |
| LOC408602 | MKL/myocardin-like protein 2 | 0.1694920 | 38.4956204 | 4.4633033 |
| LOC551914 | actin-like protein 6B | 0.1692384 | 22.0911228 | 5.2192049 |
| LOC408314 | uncharacterized LOC408314 | 0.1671270 | 9.5463680 | 4.7429534 |
| LOC726709 | uncharacterized LOC726709 | 0.1661800 | 35.7072616 | 7.3845125 |
| LOC409456 | AT-rich interactive domain-containing protein 4B | 0.1660294 | 14.8711399 | 7.0988473 |
| LOC100576243 | histone-lysine N-methyltransferase SETMAR-like | 0.1660021 | 8.2884138 | 5.5321925 |
| LOC551122 | coiled-coil domain-containing protein 42 like-2-like | 0.1649910 | 40.7081934 | 2.5269683 |
| LOC409835 | E3 ubiquitin-protein ligase MARCH2 | 0.1611970 | 12.2241251 | 1.1776620 |
| LOC410911 | glycosaminoglycan xylosylkinase | 0.1607174 | 16.8516218 | 6.1380019 |
| LOC102655865 | uncharacterized LOC102655865 | 0.1568235 | 20.6608000 | 5.3582646 |
| LOC100578446 | pituitary homeobox x | 0.1539443 | 19.5605402 | 3.2226758 |
| LOC107964899 | uncharacterized LOC107964899 | 0.1538852 | 5.5484646 | 1.9607722 |
| LOC724785 | ran-binding protein 3 | 0.1524683 | 28.8689731 | 5.6420199 |
| LOC100577320 | uncharacterized LOC100577320 | 0.1524046 | 4.2692616 | 5.3138710 |
| LOC551225 | puff-specific protein Bx42 | 0.1510036 | 11.8777615 | 7.2430745 |
| LOC413623 | kelch-like protein diablo | 0.1505293 | 1.4329324 | 0.7094757 |
| LOC412161 | broad-complex core protein isoforms 1/2/3/4/5-like | 0.1492886 | 41.1217563 | 5.0186659 |
| LOC100577669 | uncharacterized LOC100577669 | 0.1459488 | 32.1286731 | 2.4973316 |
| LOC726437 | tctex1 domain-containing protein 2-like | 0.1451860 | 18.8013328 | 2.6068488 |
| LOC551866 | NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial | 0.1439304 | 15.8350388 | 9.7422371 |
| LOC408976 | protein kinase shaggy | 0.1434148 | 40.8322781 | 8.4790476 |
| LOC724326 | peptidyl-prolyl cis-trans isomerase | 0.1404324 | 9.1016797 | 1.3795101 |
| LOC408528 | colorectal mutant cancer protein | 0.1380043 | 39.4468083 | 4.8150712 |
| LOC408351 | serine-rich adhesin for platelets | 0.1378982 | 12.4092236 | 4.0881964 |
| LOC102655778 | translation factor GUF1 homolog, mitochondrial-like | 0.1368726 | 52.0226282 | 5.9573298 |
| LOC552671 | cytochrome b-c1 complex subunit 2, mitochondrial | 0.1362211 | 4.2137569 | 9.6694129 |
| LOC724422 | homeobox protein Hox-B1a | 0.1346780 | 4.0633583 | 2.0126253 |
| LOC408301 | type 1 phosphatidylinositol 4,5-bisphosphate 4-phosphatase | 0.1324124 | 27.2961191 | 5.9548006 |
| LOC102655359 | partner of Y14 and mago | 0.1316924 | 1.9168433 | 4.6548462 |
| LOC726804 | protein BTG2-like | 0.1293200 | 19.4891026 | 7.7254270 |
| LOC102655581 | uncharacterized LOC102655581 | 0.1280070 | 65.9386870 | 5.9733318 |
| LOC413054 | myeloperoxidase | 0.1274067 | 5.0557135 | 1.9553591 |
| LOC409001 | disheveled-associated activator of morphogenesis 1 | 0.1245285 | 3.0731884 | 3.6053871 |
| LOC408740 | phosphatase and actin regulator 4 | 0.1231850 | 51.6812577 | 5.3574290 |
| LOC412268 | transcription initiation factor IIA subunit 1 | 0.1204150 | 20.9444741 | 7.8221813 |
| LOC408906 | multiple C2 and transmembrane domain-containing protein 1 | 0.1199527 | 3.6494473 | 5.5257675 |
| Mir3726 | microRNA 3726 | 0.1168569 | 1.5304939 | -1.7680796 |
| LOC102656610 | uncharacterized LOC102656610 | 0.1149387 | 2.0432413 | 1.6343154 |
| LOC551488 | uncharacterized LOC551488 | 0.1135167 | 39.5325932 | 7.2441056 |
| LOC100577801 | zinc finger protein ush | 0.1110936 | 9.6005254 | 2.8388854 |
| LOC102653684 | uncharacterized LOC102653684 | 0.1089145 | 0.4857155 | -1.0080887 |
| LOC102656558 | uncharacterized LOC102656558 | 0.1079604 | 2.3381774 | 1.2529151 |
| LOC408968 | cytochrome c-type heme lyase | 0.1075697 | 7.2302206 | 8.2937298 |
| LOC100578068 | lateral signaling target protein 2 homolog | 0.1061929 | 3.8299642 | 4.6048069 |
| LOC550824 | nucleosome assembly protein 1-like 1 | 0.1050976 | 13.2618058 | 9.1711536 |
| LOC107964990 | uncharacterized LOC107964990 | 0.1038858 | 33.2998578 | 5.9626121 |
| LOC551243 | alanine–tRNA ligase, mitochondrial | 0.1028916 | 6.2914536 | 4.2987362 |
| LOC552093 | methyltransferase-like protein 2-A | 0.1025324 | 19.9255006 | 6.7746281 |
| LOC408831 | ribosome-releasing factor 2, mitochondrial | 0.0963247 | 28.1299804 | 7.2418208 |
| LOC412675 | aspartate aminotransferase, mitochondrial | 0.0953315 | 44.2197906 | 5.2375481 |
| LOC410718 | uncharacterized LOC410718 | 0.0912024 | 1.4229583 | 3.4196289 |
| LOC726231 | uncharacterized LOC726231 | 0.0910768 | 26.7039590 | 5.6707950 |
| LOC724388 | solute carrier family 35 member G1-like | 0.0900048 | 0.7677986 | 1.0927060 |
| LOC410780 | mitochondrial sodium/hydrogen exchanger 9B2-like | 0.0887878 | 10.4361198 | 4.1040196 |
| LOC102656765 | uncharacterized LOC102656765 | 0.0883909 | 16.8960595 | 6.2810984 |
| LOC552505 | monocarboxylate transporter 9-like | 0.0865160 | 6.4168241 | 4.5971797 |
| LOC102656667 | uncharacterized LOC102656667 | 0.0855469 | 7.8312367 | -0.1395966 |
| LOC100577385 | facilitated trehalose transporter Tret1-like | 0.0845474 | 6.1788653 | 2.7449341 |
| LOC408384 | transcriptional adapter 2-alpha | 0.0830576 | 14.0473840 | 3.8174621 |
| LOC100576736 | uncharacterized LOC100576736 | 0.0804141 | 28.6674981 | 4.2806930 |
| LOC107964197 | uncharacterized LOC107964197 | 0.0774852 | 1.1585081 | 0.8751657 |
| Mir3721 | microRNA 3721 | 0.0745730 | 1.1154442 | -2.4908737 |
| LOC107964028 | uncharacterized LOC107964028 | 0.0739038 | 11.1059274 | 1.7434431 |
| LOC100578579 | uncharacterized LOC100578579 | 0.0716908 | 10.0919639 | 4.2934388 |
| LOC725149 | GPI ethanolamine phosphate transferase 2 | 0.0711842 | 3.9036566 | 4.1606304 |
| LOC408481 | chloride intracellular channel exc-4 | 0.0681204 | 40.8937900 | 7.0213339 |
| LOC102655547 | uncharacterized LOC102655547 | 0.0675736 | 1.5229862 | -0.0359920 |
| LOC551806 | aquaporin-like | 0.0663139 | 7.7577685 | 4.8414772 |
| LOC551796 | cationic amino acid transporter 4 | 0.0638439 | 3.7638427 | 4.7857227 |
| LOC107964764 | intraflagellar transport protein 22 homolog | 0.0638071 | 7.0044373 | 2.2955202 |
| 5-HT2alpha | serotonin receptor | 0.0636495 | 23.1675024 | 5.1110442 |
| LOC410747 | glucose dehydrogenase [FAD, quinone] | 0.0583390 | 0.5013487 | 2.6801745 |
| LOC725551 | high mobility group protein DSP1 | 0.0582776 | 16.5162550 | 8.5490946 |
| Qbp-1 | Queen brain-selective protein-1 | 0.0582312 | 4.9704439 | 0.3478975 |
| LOC100576281 | uncharacterized LOC100576281 | 0.0570402 | 0.6782819 | 2.2318992 |
| LOC727261 | protein odr-4 homolog | 0.0551124 | 10.1155821 | 7.0820891 |
| LOC409886 | protein Mo25 | 0.0513405 | 43.9941190 | 7.6765459 |
| LOC727135 | uncharacterized LOC727135 | 0.0488135 | 14.8879994 | 6.6049858 |
| LOC413030 | transmembrane protein 189 | 0.0476758 | 8.4329697 | 5.6420575 |
| LOC724994 | uncharacterized LOC724994 | 0.0466847 | 9.7302042 | 4.1308225 |
| LOC550955 | putative gamma-glutamylcyclotransferase CG2811 | 0.0436192 | 24.1385217 | 7.5315666 |
| LOC726050 | forkhead box protein K2-like | 0.0434946 | 5.8864057 | -0.7479730 |
| LOC410289 | paraplegin | 0.0403556 | 3.3904863 | 8.2386738 |
| LOC100576136 | zinc finger BED domain-containing protein 1-like | 0.0394145 | 5.2658207 | 1.9745711 |
| LOC100576502 | tripartite motif-containing protein 45-like | 0.0361440 | 5.5751475 | 4.1241886 |
| LOC725286 | transcription factor TFIIIB component B’’ homolog | 0.0361333 | 21.1181951 | 4.2192805 |
| LOC552106 | uncharacterized LOC552106 | 0.0344027 | 31.6162597 | 9.0880211 |
| LOC409126 | ras-related protein Rab-2 | 0.0332093 | 17.1831048 | 7.8897426 |
| LOC107965602 | uncharacterized LOC107965602 | 0.0323204 | 2.2520559 | 1.7156314 |
| LOC413117 | proton-coupled amino acid transporter 1 | 0.0322226 | 25.9764499 | 6.9691059 |
| LOC100577373 | uncharacterized LOC100577373 | 0.0290912 | 35.8541240 | 6.0079080 |
| LOC107965487 | uncharacterized LOC107965487 | 0.0286138 | 18.5314148 | 3.5941483 |
| LOC412053 | reticulocyte-binding protein 2 | 0.0279588 | 27.1908446 | 4.4736662 |
| LOC408544 | lysyl oxidase homolog 4 | 0.0273261 | 2.4076999 | -0.0182900 |
| LOC725105 | UDP-sugar transporter UST74c-like | 0.0257338 | 12.8398605 | 6.8185357 |
| LOC552804 | tubulin-specific chaperone cofactor E-like protein | 0.0246197 | 18.3438666 | 4.7939990 |
| LOC408732 | uncharacterized LOC408732 | 0.0237851 | 2.4739423 | 0.9547715 |
| LOC551463 | decaprenyl-diphosphate synthase subunit 2 | 0.0235467 | 33.8326840 | 7.7355672 |
| LOC409728 | 40S ribosomal protein S5 | 0.0229810 | 27.2687626 | 8.5068719 |
| LOC552052 | zinc finger protein 330 homolog | 0.0220122 | 3.3447160 | 5.8257496 |
| LOC727650 | uncharacterized LOC727650 | 0.0217284 | 7.1878052 | 5.9093161 |
| LOC412755 | WD repeat-containing protein 13-like | 0.0188287 | 4.9063700 | 6.4074001 |
| LOC410037 | dnaJ homolog subfamily C member 7 | 0.0136422 | 2.7523007 | 6.6161330 |
| LOC410969 | ras-related protein Rab-9A | 0.0070368 | 1.9548622 | 5.7464544 |
| LOC408898 | uncharacterized LOC408898 | 0.0046818 | 45.4056518 | 3.3616111 |
| LOC725632 | protein MCM10 homolog | 0.0044534 | 5.1741424 | 4.5853903 |
| LOC102655461 | uncharacterized LOC102655461 | 0.0029843 | 0.4689785 | 1.0450915 |
| LOC551537 | enoyl-CoA hydratase domain-containing protein 3, mitochondrial | 0.0012162 | 0.2215843 | 5.0420284 |
| LOC726407 | uncharacterized LOC726407 | 0.0003562 | 5.8808610 | 6.7119472 |
| LOC725717 | polycomb group RING finger protein 3 | -0.0016226 | 22.1562516 | 5.4644028 |
| LOC413495 | mediator of RNA polymerase II transcription subunit 27 | -0.0018542 | 1.9714198 | 4.6773848 |
| LOC410133 | PDZ domain-containing RING finger protein 4 | -0.0029520 | 7.1686910 | 2.5368371 |
| LOC409056 | sodium-dependent phosphate transporter 2 | -0.0037562 | 2.7807461 | 2.2088022 |
| LOC552816 | vesicular integral-membrane protein VIP36 | -0.0066020 | 21.1225803 | 8.2415095 |
| LOC551621 | leucine rich repeat G protein coupled receptor | -0.0079808 | 1.0960486 | -0.2191593 |
| LOC413977 | calsyntenin-1 | -0.0105630 | 49.9267994 | 7.1075988 |
| LOC551520 | golgin subfamily A member 2-like | -0.0111814 | 9.2352394 | 6.8676321 |
| LOC107964314 | uncharacterized LOC107964314 | -0.0212045 | 5.6727873 | 5.0216806 |
| LOC411116 | nephrin | -0.0224304 | 9.7150451 | -0.5349062 |
| LOC413065 | transmembrane protein 164 | -0.0233882 | 3.2816262 | 5.1706985 |
| LOC100576966 | trichohyalin-like | -0.0236049 | 18.2757942 | 4.5701386 |
| LOC551831 | histone deacetylase complex subunit SAP30 homolog | -0.0238030 | 3.8272060 | 5.6712535 |
| LOC102655072 | microtubule-associated protein futsch-like | -0.0245747 | 33.2431189 | 2.4441026 |
| LOC102656114 | uncharacterized LOC102656114 | -0.0265407 | 0.2523775 | -0.8067745 |
| LOC408568 | peptidyl-alpha-hydroxyglycine alpha-amidating lyase 1-like | -0.0276611 | 20.7007633 | 6.5979746 |
| LOC408275 | uncharacterized LOC408275 | -0.0280326 | 17.2479269 | 3.8705288 |
| LOC408411 | transcription factor Sox-2 | -0.0310655 | 16.8985622 | 5.1584712 |
| LOC100577995 | uncharacterized LOC100577995 | -0.0331113 | 3.4438811 | 5.7514376 |
| LOC726028 | probable rRNA-processing protein EBP2 homolog | -0.0380340 | 2.9491157 | 4.5763613 |
| LOC552246 | transmembrane protein 43 homolog | -0.0386460 | 11.6270055 | 6.9651748 |
| LOC102655457 | uncharacterized LOC102655457 | -0.0387902 | 1.0055018 | -1.7153873 |
| LOC552369 | synaptotagmin-like protein 5 | -0.0412307 | 23.4285877 | 6.8524612 |
| LOC107964936 | putative protein TPRXL | -0.0414879 | 5.6925811 | 1.4293824 |
| LOC410517 | uncharacterized LOC410517 | -0.0419630 | 3.1270841 | 5.7453688 |
| LOC410332 | breast cancer anti-estrogen resistance protein 3 | -0.0422665 | 6.8103194 | 2.9586534 |
| LOC408516 | protein D2-like | -0.0425439 | 1.4809930 | 10.0660162 |
| LOC411294 | dopamine N-acetyltransferase-like | -0.0432786 | 0.4104946 | 1.6072792 |
| LOC409678 | ankycorbin | -0.0448357 | 0.3149795 | -0.9929875 |
| LOC107964267 | uncharacterized LOC107964267 | -0.0460196 | 0.8241869 | 1.5754325 |
| LOC408761 | uncharacterized LOC408761 | -0.0507185 | 7.4520168 | 7.0416872 |
| LOC551257 | microtubule-associated protein Jupiter | -0.0560662 | 0.2532236 | 6.2794271 |
| LOC726822 | geranylgeranyl transferase type-2 subunit beta | -0.0561205 | 15.5444714 | 6.8442681 |
| LOC724931 | C3 and PZP-like alpha-2-macroglobulin domain-containing protein 8 | -0.0569058 | 4.7532740 | 6.2153720 |
| LOC410678 | mitochondrial ribosomal protein S11 | -0.0573700 | 2.2317809 | 6.1768450 |
| LOC107965330 | uncharacterized LOC107965330 | -0.0583657 | 0.1269011 | -0.8461105 |
| LOC107965502 | uncharacterized LOC107965502 | -0.0612725 | 1.3416873 | 0.0370535 |
| LOC410341 | RNA pseudouridylate synthase domain-containing protein 2-like | -0.0624698 | 3.8738443 | 4.0049696 |
| LOC107965116 | uncharacterized LOC107965116 | -0.0626938 | 1.4033385 | 2.6998301 |
| LOC102654570 | uncharacterized LOC102654570 | -0.0629823 | 0.5809828 | 3.1637329 |
| LOC552236 | threonine aspartase 1 | -0.0634647 | 16.1993804 | 5.7441175 |
| LOC107964177 | uncharacterized LOC107964177 | -0.0648312 | 2.6474861 | 1.8672531 |
| LOC408936 | RNA-binding protein squid | -0.0653684 | 4.0033821 | 5.4771233 |
| LOC107964757 | uncharacterized LOC107964757 | -0.0688982 | 0.1345795 | 0.5349444 |
| LOC412889 | branched-chain-amino-acid aminotransferase, cytosolic-like | -0.0689650 | 2.0430213 | 8.0411122 |
| LOC102656354 | uncharacterized LOC102656354 | -0.0744638 | 6.0018975 | 6.2863941 |
| LOC412410 | U3 small nucleolar RNA-associated protein 6 homolog | -0.0756385 | 8.2812812 | 5.8885374 |
| LOC410216 | reticulocalbin-2 | -0.0766814 | 1.8870828 | 7.1360841 |
| LOC409198 | 26S protease regulatory subunit 6A-B | -0.0777869 | 2.2455836 | 7.9566306 |
| LOC100578072 | uncharacterized LOC100578072 | -0.0799849 | 0.2535456 | 0.8137362 |
| LOC413574 | 26S proteasome non-ATPase regulatory subunit 2-like | -0.0808690 | 6.5904070 | 4.7137430 |
| LOC107965086 | uncharacterized LOC107965086 | -0.0809681 | 0.5354217 | -0.3782826 |
| osp | outspread | -0.0879562 | 1.8101662 | 4.2882961 |
| LOC409034 | uncharacterized LOC409034 | -0.0899413 | 14.5475139 | 4.6160966 |
| LOC727375 | ankyrin repeat and MYND domain-containing protein 2 | -0.0987473 | 5.9265087 | 7.9379163 |
| LOC100577567 | protein unc-93 homolog A-like | -0.1016814 | 13.2304645 | 2.2403180 |
| LOC726648 | fas apoptotic inhibitory molecule 1 | -0.1064886 | 1.1602375 | 0.7537502 |
| LOC726409 | peptidyl-prolyl cis-trans isomerase H | -0.1065288 | 1.5437443 | 3.5497693 |
| LOC107965194 | uncharacterized LOC107965194 | -0.1103535 | 1.6068014 | -0.2112986 |
| LOC107964513 | uncharacterized LOC107964513 | -0.1161022 | 18.4556587 | 1.6147178 |
| LOC726546 | gem-associated protein 7-like | -0.1161073 | 1.8863317 | 3.7561364 |
| LOC410486 | 40S ribosomal protein SA | -0.1178761 | 1.3145948 | 9.9540762 |
| LOC727027 | cleft lip and palate transmembrane protein 1 homolog | -0.1245296 | 8.3595268 | 8.9979715 |
| LOC107965439 | uncharacterized LOC107965439 | -0.1271484 | 0.3378209 | -1.4700291 |
| LOC411320 | serine/threonine/tyrosine-interacting protein-like | -0.1299073 | 0.3898023 | 3.8581272 |
| LOC412305 | succinate-semialdehyde dehydrogenase, mitochondrial | -0.1350241 | 5.4250881 | 8.4258131 |
| LOC107965281 | ADP-ribosylation factor 6 | -0.1371774 | 2.0892661 | 6.6195446 |
| LOC410600 | uncharacterized LOC410600 | -0.1407091 | 7.0230496 | 3.1332867 |
| LOC408939 | charged multivesicular body protein 5 | -0.1510703 | 3.8420993 | 5.6049125 |
| LOC100576795 | uncharacterized protein YJR142W | -0.1548303 | 7.7444633 | 7.7321510 |
| LOC411857 | charged multivesicular body protein 4b | -0.1549755 | 2.8788518 | 8.1152633 |
| LOC726020 | protein OSCP1 | -0.1644416 | 7.1595168 | 3.8258362 |
| LOC552067 | uncharacterized LOC552067 | -0.1649520 | 1.6035331 | 5.7526955 |
| LOC552276 | uncharacterized LOC552276 | -0.1674643 | 2.7881044 | 1.2420892 |
| LOC725452 | uncharacterized LOC725452 | -0.1676772 | 6.4079680 | 7.6447301 |
| LOC412231 | trans-1,2-dihydrobenzene-1,2-diol dehydrogenase-like | -0.1683470 | 11.5037715 | 4.9271191 |
| LOC107964528 | uncharacterized LOC107964528 | -0.1688990 | 1.0831012 | 3.0797422 |
| LOC102656676 | uncharacterized LOC102656676 | -0.1689001 | 0.4081349 | -2.0271161 |
| LOC107965787 | uncharacterized LOC107965787 | -0.1697746 | 6.9027145 | -0.3308233 |
| LOC725645 | uncharacterized LOC725645 | -0.1777178 | 0.3832409 | 3.8502527 |
| LOC725101 | uncharacterized LOC725101 | -0.1829779 | 0.3045904 | 4.4053691 |
| LOC552183 | phosphatidylinositol transfer protein alpha isoform | -0.1864169 | 3.5773739 | 8.6577147 |
| LOC411261 | molybdenum cofactor sulfurase 1 | -0.1939543 | 0.9760482 | 5.2139788 |
| LOC725789 | ragulator complex protein LAMTOR1 | -0.2007683 | 1.5606289 | 6.5704677 |
| LOC107964035 | uncharacterized LOC107964035 | -0.2012962 | 0.2847155 | 5.0917317 |
| LOC409369 | brain protein I3 | -0.2014090 | 10.2504215 | 5.2407268 |
| LOC409329 | mannose-1-phosphate guanyltransferase beta | -0.2094178 | 0.2206710 | 9.0494660 |
| LOC408386 | eukaryotic translation initiation factor 3 subunit G | -0.2129080 | 2.7133035 | 7.4224672 |
| LOC552023 | guanylate kinase | -0.2156250 | 0.5946329 | 5.7123147 |
| LOC107964992 | rho GDP-dissociation inhibitor 2 | -0.2188728 | 6.6575938 | 7.2503805 |
| LOC552290 | serine/threonine-protein phosphatase 4 catalytic subunit | -0.2195734 | 1.9245697 | 7.0057663 |
| LOC408353 | proteasome subunit beta type-7 | -0.2266489 | 4.5975856 | 8.1429935 |
| LOC107965235 | phosphatidylinositol 4-phosphate 5-kinase 7-like | -0.2295160 | 0.9265912 | 0.0196742 |
| LOC100576599 | uncharacterized LOC100576599 | -0.2337320 | 0.1359526 | 1.3488371 |
| LOC412635 | fukutin-related protein | -0.2431492 | 0.5964966 | 2.8159009 |
| LOC107964773 | uncharacterized LOC107964773 | -0.2458431 | 1.1163665 | 0.4221530 |
| LOC551941 | uncharacterized LOC551941 | -0.2514606 | 24.1539642 | 6.5444572 |
| LOC100578629 | uncharacterized LOC100578629 | -0.2536583 | 3.6467616 | 4.2610292 |
| LOC413060 | DNA-binding protein D-ETS-4 | -0.2556470 | 0.2840921 | 1.1424028 |
| LOC412016 | transforming growth factor beta regulator 1 | -0.2583502 | 1.2509637 | 4.8058401 |
| LOC409295 | mitochondrial ubiquitin ligase activator of nfkb 1 | -0.2645012 | 1.2248413 | 7.6470586 |
| LOC409201 | acyl-protein thioesterase 1 | -0.2645858 | 3.0048486 | 7.0632786 |
| LOC414011 | mitochondrial glutamate carrier 1-like | -0.2647533 | 0.8194617 | 5.6786680 |
| LOC552459 | glycine-rich cell wall structural protein-like | -0.2679987 | 3.3015751 | 7.3002269 |
| LOC100577003 | uncharacterized LOC100577003 | -0.2736905 | 0.5910698 | 4.6781347 |
| LOC107964838 | probable uridine nucleosidase 2 | -0.2738140 | 20.2529952 | 7.1552359 |
| LOC551890 | probable serine incorporator | -0.2739736 | 2.9993741 | 8.5798043 |
| LOC726922 | acyl-CoA-binding domain-containing protein 4 | -0.2794057 | 1.2567200 | 6.9163243 |
| LOC413429 | acid phosphatase type 7 | -0.2799652 | 1.0496274 | 8.8572591 |
| LOC551968 | aldose reductase-like | -0.2836104 | 2.0047856 | 11.0227600 |
| LOC409589 | 60S ribosomal protein L10 | -0.2844920 | 24.8733817 | 9.0105426 |
| LOC100577748 | uncharacterized LOC100577748 | -0.2888027 | 2.4348279 | 2.4447819 |
| LOC552590 | transmembrane protein 120 homolog | -0.2909622 | 3.7196763 | 6.5290509 |
| LOC410612 | solute carrier family 25 member 44 | -0.2965698 | 0.6399350 | 7.8778234 |
| LOC408531 | PRADC1-like protein | -0.3038170 | 3.1708290 | 6.7639208 |
| Fibroin1 | silk fibroin 1 | -0.3066275 | 3.4365002 | -1.6746240 |
| LOC409333 | CAAX prenyl protease 2 | -0.3346019 | 0.4983195 | 5.7000462 |
| LOC409578 | adapter molecule Crk | -0.3360800 | 0.6441507 | 6.1985494 |
| Vamp7 | vesicle-associated membrane protein 7 | -0.3367216 | 1.2297287 | 6.3480307 |
| LOC725358 | protein YIPF1 | -0.3452196 | 5.2805772 | 7.1462888 |
| LOC551029 | inhibitor of growth protein 5 | -0.3530661 | 0.8479183 | 4.2139591 |
| LOC727334 | selenium-binding protein 1-like | -0.3533757 | 0.4753935 | -0.0387155 |
| LOC551419 | alkaline ceramidase | -0.3538829 | 8.6210680 | 5.1890971 |
| LOC411524 | transmembrane protein 179 | -0.3561333 | 25.7498347 | 5.2332513 |
| LOC408868 | inositol monophosphatase 2-like | -0.3566651 | 0.8557178 | 5.9744682 |
| LOC409366 | integral membrane protein 2C | -0.3592208 | 2.1647936 | 8.6010584 |
| LOC551415 | probable cytosolic iron-sulfur protein assembly protein Ciao1 | -0.3648532 | 13.8095778 | 7.0828495 |
| LOC552520 | AP-3 complex subunit mu-1 | -0.3712673 | 2.6215054 | 6.8007361 |
| LOC552667 | protein charybde-like | -0.3777842 | 0.2713383 | 6.3032006 |
| LOC552769 | ubiA prenyltransferase domain-containing protein 1 homolog | -0.3950438 | 6.5361417 | 8.1454039 |
| LOC551505 | ER membrane protein complex subunit 3 | -0.3982600 | 1.9181617 | 6.8454824 |
| LOC725577 | uncharacterized LOC725577 | -0.4002962 | 3.4126943 | 6.4327403 |
| LOC102655840 | uncharacterized LOC102655840 | -0.4113773 | 0.4870562 | -0.1669327 |
| LOC409176 | pro-resilin | -0.4144081 | 1.3685510 | -2.2256813 |
| LOC408364 | uncharacterized LOC408364 | -0.4563964 | 0.1425348 | -1.1715150 |
| LOC552038 | synaptosomal-associated protein 29 | -0.4579741 | 2.6250798 | 5.5240236 |
| LOC727473 | signal recognition particle 19 kDa protein | -0.4629216 | 12.4380215 | 5.4373183 |
| LOC102656545 | uncharacterized protein CG3556-like | -0.5034955 | 0.2840002 | -0.5349110 |
| LOC411197 | dynein light chain 1, axonemal-like | -0.5420408 | 5.7918350 | -0.9884322 |
| LOC107964324 | uncharacterized LOC107964324 | -0.5432074 | 6.7120520 | -2.2949639 |
| LOC102656927 | uncharacterized LOC102656927 | -0.5951055 | 1.7352877 | -0.7683185 |
| LOC724768 | uncharacterized LOC724768 | -0.6343115 | 0.6128344 | 7.1222310 |
| gene | description | logFC | kWithin | logCPM |
|---|---|---|---|---|
| LOC411083 | sodium/potassium-transporting ATPase subunit alpha | 0.3148439 | 88.4482596 | 8.1161213 |
| LOC409536 | arginine-glutamic acid dipeptide repeats protein | 0.6952491 | 83.9081864 | 6.0450926 |
| LOC727455 | UBA-like domain-containing protein 2 | 0.4078972 | 83.7403545 | 6.8630571 |
| LOC726486 | uncharacterized LOC726486 | 0.4362861 | 83.4369053 | 7.6807720 |
| LOC102655479 | apoptosis-stimulating of p53 protein 2-like | 0.6088103 | 82.7003848 | 4.9305540 |
| LOC408884 | transcription factor SOX-5 | 0.7159568 | 82.1124845 | 5.2529432 |
| LOC102654353 | alpha-(1,3)-fucosyltransferase C | 0.6215493 | 81.6287785 | 5.9300833 |
| LOC552545 | division abnormally delayed protein | 0.6875360 | 80.8873113 | 5.1706967 |
| LOC725732 | uncharacterized LOC725732 | 0.8772066 | 78.4888677 | 7.0120854 |
| LOC409759 | serine-rich adhesin for platelets-like | 0.6018953 | 78.3571226 | 3.5862933 |
| LOC408429 | tensin-1 | 0.9339438 | 77.3130129 | 9.0999733 |
| LOC409658 | uncharacterized LOC409658 | 0.5192188 | 76.1660094 | 4.9952055 |
| LOC550799 | DAZ-associated protein 2-like | 0.5119810 | 75.9292080 | 8.7922817 |
| LOC408685 | MAP7 domain-containing protein 1 | 0.2362098 | 74.8692681 | 9.7095780 |
| LOC410637 | nuclear receptor coactivator 3-like | 0.6984678 | 74.7211359 | 6.4612596 |
| LOC412795 | protocadherin-15 | 0.6734834 | 73.3225167 | 3.4116108 |
| LOC726283 | neuronal calcium sensor 2 | 1.0201855 | 72.7224369 | 2.0729008 |
| LOC410423 | uncharacterized LOC410423 | 0.2252604 | 72.6915153 | 5.7309500 |
| LOC552466 | filamin-A-like | 0.5412431 | 72.2949842 | 7.5459191 |
| LOC100578159 | zinc finger matrin-type protein CG9776-like | 0.6347480 | 71.7926601 | 6.1907512 |
| LOC413427 | uncharacterized LOC413427 | 0.3196507 | 71.7486957 | 3.6461459 |
| Mir3730 | microRNA 3730 | 0.8425770 | 70.8150756 | -0.1852727 |
| LOC724563 | uncharacterized LOC724563 | 0.3522561 | 70.8058337 | 3.0278921 |
| LOC100577486 | uncharacterized LOC100577486 | 0.6799707 | 69.8768644 | 4.5345130 |
| LOC107965146 | uncharacterized LOC107965146 | 0.4933416 | 69.6823200 | 3.0745884 |
| LOC100576233 | titin-like | 0.6802412 | 69.4193954 | 5.7300651 |
| LOC411365 | beta-1,4-N-acetylgalactosaminyltransferase bre-4 | 0.8153892 | 69.3538808 | 5.4275751 |
| LOC410802 | microphthalmia-associated transcription factor | 0.1809516 | 69.3244563 | 5.1723108 |
| LOC411157 | fat-like cadherin-related tumor suppressor homolog | 0.7608550 | 69.1532771 | 5.5387394 |
| LOC410487 | uncharacterized LOC410487 | 0.2530178 | 68.9948979 | 5.2019419 |
| LOC102656585 | CD151 antigen-like | 0.5241864 | 68.9802730 | 3.5636111 |
| LOC409699 | 26S proteasome non-ATPase regulatory subunit 1-like | 0.3500432 | 67.7063389 | 4.1920762 |
| LOC409908 | tyrosine-protein kinase CSK | 0.6455878 | 66.6781195 | 8.3206826 |
| LOC726184 | uncharacterized LOC726184 | 0.4459639 | 66.4796793 | 6.1179741 |
| LOC102655581 | uncharacterized LOC102655581 | 0.1280070 | 65.9386870 | 5.9733318 |
| LOC100577994 | putative SLC9B1-like protein SLC9B1P1 | 1.2744837 | 65.7661375 | -0.3082461 |
| LOC102653963 | uncharacterized LOC102653963 | 0.2985644 | 65.6671572 | 6.7790229 |
| LOC409095 | protein apterous | 1.0670504 | 65.6117013 | 0.7271275 |
| LOC107965057 | uncharacterized LOC107965057 | 0.3498028 | 65.3654454 | 4.8223446 |
| LOC102653653 | uncharacterized LOC102653653 | 3.6357315 | 65.0384409 | 1.0357067 |
| LOC408292 | transcriptional coactivator YAP1 | 0.4471923 | 64.6653006 | 3.8642069 |
| LOC100577530 | uncharacterized LOC100577530 | 0.4017140 | 64.2207285 | 2.1424852 |
| Mir9891 | microRNA 9891 | 2.1507545 | 64.1643044 | -2.4172331 |
| LOC100578558 | uncharacterized LOC100578558 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965367 | uncharacterized LOC107965367 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965561 | carbonic anhydrase 2-like | 1.4335953 | 64.1643044 | -2.4871817 |
| Mir3727 | microRNA 3727 | 1.4335953 | 64.1643044 | -2.4871817 |
| LOC107965267 | uncharacterized LOC107965267 | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC725058 | GS homeobox 1-like | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC725089 | cuticular protein | 0.8823784 | 64.1643044 | -2.5234131 |
| Mir6042 | microRNA 6042 | 0.8823784 | 64.1643044 | -2.5234131 |
| LOC409800 | unconventional myosin-IXb-like | 0.8756980 | 64.1643044 | -2.5237798 |
| LOC727137 | protein TANC2-like | 0.8554759 | 64.1643044 | -2.5248806 |
| Amih | hyperpolarization-activated ion channel | 0.6393806 | 63.4973824 | 4.4346506 |
| LOC408677 | titin | 0.3716590 | 63.3679545 | 4.3918138 |
| LOC408616 | transcriptional enhancer factor TEF-1 | 0.4429347 | 63.3182528 | 6.3228409 |
| LOC410278 | putative inorganic phosphate cotransporter | 0.2831814 | 63.2123152 | 6.7269135 |
| LOC409051 | microtubule-associated protein futsch | 0.3397620 | 63.1919163 | 8.2403027 |
| LOC412254 | BUB3-interacting and GLEBS motif-containing protein ZNF207 | 0.6038168 | 62.9938002 | 4.1705566 |
| LOC412330 | ubiquitin-conjugating enzyme E2 H | 0.2595202 | 62.6997433 | 8.7064778 |
| LOC410918 | protein tramtrack, beta isoform | 0.4668133 | 62.5896290 | 6.2353708 |
| LOC100577139 | AF4/FMR2 family member 4 | 0.2099963 | 62.5235042 | 8.1780345 |
| LOC551167 | multidrug resistance protein homolog 49 | 0.6310844 | 62.4007766 | 6.9076765 |
| LOC102653940 | cyclin-dependent kinase inhibitor 1 | 0.3388948 | 62.3980128 | 7.2198148 |
| LOC408801 | protein split ends | 0.3163413 | 62.1181892 | 5.8311494 |
| LOC725555 | eukaryotic peptide chain release factor subunit 1 | 0.3295501 | 62.0720424 | 6.7297924 |
| LOC551123 | RNA-binding protein Musashi homolog Rbp6 | 0.2694714 | 61.9724731 | 3.2582374 |
| LOC411173 | torso-like protein | 0.8410324 | 61.2092154 | 4.0578694 |
| LOC409729 | zinc finger protein 608-like | 0.6125224 | 61.1750004 | 8.0131781 |
| Reck | reversion-inducing-cysteine-rich protein with kazal motifs | 0.2713714 | 61.0672887 | 3.2199595 |
| LOC409780 | CUGBP Elav-like family member 2 | 0.3992511 | 60.5179585 | 6.9968893 |
| LOC726321 | uncharacterized LOC726321 | 0.8804572 | 60.5150132 | 8.3852595 |
| TpnCIIIa | troponin C type IIIa | 1.1509842 | 60.3953580 | 9.5878433 |
| LOC412840 | homeobox protein caupolican-like | 0.5327119 | 60.2292349 | 3.4795902 |
| LOC107964039 | uncharacterized LOC107964039 | 0.6660352 | 60.0203764 | 4.1811747 |
| LOC100577603 | uncharacterized LOC100577603 | 0.3563418 | 59.8575040 | 2.4904796 |
| LOC408343 | potassium voltage-gated channel protein Shaker | 0.6853634 | 59.8330559 | 3.3867382 |
| LOC100578600 | uncharacterized LOC100578600 | 0.5057266 | 59.2982625 | 2.3908330 |
| LOC107964938 | uncharacterized LOC107964938 | 0.9051890 | 58.8146138 | 2.4444232 |
| LOC725422 | box A-binding factor-like | 0.6006039 | 58.4624140 | 3.8649197 |
| LOC408298 | maternal protein pumilio | 0.3382193 | 58.1854263 | 6.5249877 |
| LOC410004 | transcription initiation factor TFIID subunit 10-like | 0.3244925 | 58.0968272 | 4.3599871 |
| LOC100578733 | nose resistant to fluoxetine protein 6 | 0.8601092 | 58.0029623 | 7.5414236 |
| LOC107964460 | uncharacterized LOC107964460 | 0.4526269 | 57.9982036 | 2.9930869 |
| LOC410103 | partner of Y14 and mago-like | 0.4860488 | 57.9757128 | 7.0018489 |
| LOC107964215 | uncharacterized LOC107964215 | 2.9594147 | 57.2450646 | -2.2906962 |
| LOC102654203 | uncharacterized LOC102654203 | 2.0457756 | 57.2152537 | -2.4294918 |
| LOC100578420 | uncharacterized LOC100578420 | 0.8039483 | 55.8459822 | 2.7047212 |
| LOC410867 | uncharacterized LOC410867 | 0.2407879 | 55.4899916 | 6.2108570 |
| LOC551799 | putative mediator of RNA polymerase II transcription subunit 26 | 0.8755603 | 55.0009192 | 5.8423646 |
| LOC551360 | transcription factor Ken | 0.3417572 | 54.9281675 | 4.9477170 |
| LOC724237 | prostaglandin E2 receptor EP3 subtype | 0.3016904 | 54.7566117 | 2.8076200 |
| LOC408446 | probable aconitate hydratase, mitochondrial | 0.5937009 | 54.4878536 | 8.9041361 |
| LOC550663 | putative oxidoreductase GLYR1 homolog | 0.8863323 | 54.1389744 | 6.8027728 |
| LOC100578925 | protein Tob1-like | 0.2031819 | 54.0726911 | 8.3573249 |
| LOC727487 | selenium-binding protein 1-A-like | 4.0680932 | 53.9970165 | 1.7454831 |
| LOC409843 | myosin heavy chain, muscle | 0.6260389 | 53.5988624 | 7.8645023 |
| LOC408869 | lissencephaly-1 homolog | 0.5169801 | 53.3066885 | 7.1346578 |
| LOC411113 | solute carrier family 12 member 4 | 0.5600264 | 53.1941694 | 6.0133651 |
| LOC725893 | uncharacterized LOC725893 | 0.3040555 | 53.1851098 | 4.3503923 |
| LOC727232 | uncharacterized LOC727232 | 0.4715980 | 53.0916129 | 3.9948338 |
| LOC410532 | solute carrier family 28 member 3 | 0.2144617 | 52.8541127 | 7.7704276 |
| LOC411597 | hemocytin | 0.5234496 | 52.8077146 | 5.9452034 |
| LOC725117 | protein sprouty homolog 2 | 0.6124663 | 52.6058250 | 6.8044331 |
| LOC726210 | uncharacterized family 31 glucosidase KIAA1161 | 0.7639165 | 52.5738277 | 3.6436819 |
| LOC552195 | uncharacterized LOC552195 | 0.5546028 | 52.5729305 | 4.6989702 |
| LOC410336 | dipeptidyl aminopeptidase-like protein 6 | 0.4815907 | 52.5087958 | 3.7739625 |
| LOC725189 | protein bric-a-brac 1-like | 0.6423123 | 52.3689221 | 4.6662232 |
| LOC102655639 | uncharacterized LOC102655639 | 0.9253894 | 52.2364951 | -0.0590385 |
| LOC102655778 | translation factor GUF1 homolog, mitochondrial-like | 0.1368726 | 52.0226282 | 5.9573298 |
| LOC408740 | phosphatase and actin regulator 4 | 0.1231850 | 51.6812577 | 5.3574290 |
| LOC410371 | calcium-transporting ATPase sarcoplasmic/endoplasmic reticulum type | 0.6970507 | 51.5423316 | 9.1354337 |
| LOC100577707 | arginine/serine-rich coiled-coil protein 2 | 0.3466250 | 51.5245736 | 6.2744410 |
| LOC107964206 | zinc finger protein 717-like | 0.7396728 | 50.8489426 | 5.0767270 |
| LOC412949 | glutamate receptor ionotropic, kainate 5 | 0.1840070 | 50.8481895 | 4.7815477 |
| LOC107966094 | uncharacterized LOC107966094 | 1.7859992 | 50.7954873 | -2.4568178 |
| LOC724961 | protein drumstick | 0.8803588 | 50.6675665 | 2.9103657 |
| LOC724269 | connectin | 0.6971638 | 50.5554123 | 2.3598870 |
| LOC409007 | heterogeneous nuclear ribonucleoprotein K | 0.1913148 | 50.3306322 | 5.7926187 |
| TpnT | troponin T, skeletal muscle | 0.5685675 | 50.2389284 | 7.7603633 |
| LOC408963 | pleckstrin homology domain-containing family G member 5-like | 0.3642991 | 49.9831425 | 4.5376376 |
| LOC100578621 | uncharacterized LOC100578621 | 0.1803418 | 49.9823464 | 4.1502464 |
| LOC413977 | calsyntenin-1 | -0.0105630 | 49.9267994 | 7.1075988 |
| LOC552374 | protein Wnt-1 | 0.7785134 | 49.5338907 | 3.3933256 |
| LOC727081 | uncharacterized LOC727081 | 0.5253922 | 49.1655619 | 2.4468041 |
| LOC725263 | tumor protein p53-inducible nuclear protein 2-like | 0.2937349 | 49.1234082 | 8.4150368 |
| LOC408408 | uncharacterized LOC408408 | 0.4130815 | 49.1108403 | 5.6894241 |
| LOC725588 | uncharacterized LOC725588 | 0.3853234 | 49.0367420 | 6.3713473 |
| LOC100577364 | FERM, RhoGEF and pleckstrin domain-containing protein 1-like | 0.2388990 | 48.9031974 | 4.1628422 |
| LOC724740 | fork head domain transcription factor slp1 | 0.8420210 | 48.6363906 | 0.3693353 |
| LOC100577543 | fez family zinc finger protein 1-like | 0.4955876 | 48.2635291 | 2.3607386 |
| LOC410824 | spondin-1 | 1.0507562 | 48.1553486 | 2.9942682 |
| LOC408937 | SPARC | 0.6990347 | 48.1286127 | 8.2096688 |
| LOC725235 | uncharacterized LOC725235 | 0.2142489 | 48.0433697 | 2.4493873 |
| LOC552485 | glycylpeptide N-tetradecanoyltransferase 1 | 0.3964405 | 48.0238918 | 7.2640411 |
| LOC408953 | peroxidase | 0.2679753 | 47.9986173 | 11.5493626 |
| LOC413134 | UNC93-like protein | 0.2247477 | 47.9509108 | 5.1153332 |
| LOC100578249 | uncharacterized LOC100578249 | 0.9619709 | 47.8979054 | 2.2253076 |
| LOC552709 | polypyrimidine tract-binding protein 1 | 0.4082761 | 47.8264812 | 4.8785981 |
| LOC408779 | short stop | 0.3346591 | 47.5567917 | 6.5177907 |
| LOC410736 | uncharacterized LOC410736 | 0.5829171 | 47.4976239 | 1.4693170 |
| LOC727055 | 28S ribosomal protein S31, mitochondrial | 0.2783042 | 47.2683604 | 5.6765057 |
| LOC727159 | restin homolog | 0.2055947 | 47.0755589 | 5.0952849 |
| LOC102656720 | uncharacterized LOC102656720 | 0.5413134 | 47.0210377 | 3.2807870 |
| Mblk-1 | transcription factor mblk-1-like | 0.4160218 | 46.7278449 | 9.2984291 |
| LOC409921 | zinc finger protein Elbow-like | 0.5019139 | 46.6890463 | 1.5400149 |
| LOC107964413 | uncharacterized LOC107964413 | 0.4049092 | 46.5975649 | 2.3727135 |
| LOC100576247 | frizzled 2 | 0.5360450 | 46.1188997 | 4.0902445 |
| LOC408872 | steroid receptor seven-up, isoforms B/C | 0.9545382 | 45.9204960 | -0.2158994 |
| LOC100576336 | uncharacterized LOC100576336 | 0.3623700 | 45.6958814 | 4.0718135 |
| LOC410860 | battenin | 0.4440925 | 45.6076005 | 6.5758781 |
| LOC725960 | neurofilament heavy polypeptide | 0.5667067 | 45.5931527 | 5.2541267 |
| LOC408944 | lysine-specific demethylase 3B | 0.2077116 | 45.4544599 | 7.6753254 |
| LOC100576254 | uncharacterized LOC100576254 | 0.8585322 | 45.4375707 | 2.9954306 |
| LOC408898 | uncharacterized LOC408898 | 0.0046818 | 45.4056518 | 3.3616111 |
| LOC725290 | transcription factor CP2-like protein 1 | 0.9395201 | 45.3160561 | 7.0831085 |
| LOC107965044 | uncharacterized LOC107965044 | 1.4315785 | 45.0073683 | 3.1318444 |
| LOC551816 | SH3 domain-binding protein 5-like | 3.5434360 | 44.8587257 | -2.1562394 |
| LOC410741 | proton-coupled amino acid transporter 4 | 0.3317587 | 44.8218860 | 8.6831595 |
| LOC409167 | translation elongation factor 2 | 0.5071072 | 44.8091580 | 10.4831972 |
| LOC726065 | uncharacterized LOC726065 | 0.5041557 | 44.6694647 | 4.6286856 |
| LOC408763 | homeobox protein extradenticle | 0.4749732 | 44.5805858 | 6.5108539 |
| LOC726199 | tumor protein D53 homolog | 0.2775478 | 44.4953291 | 8.3654982 |
| LOC102655972 | uncharacterized LOC102655972 | 1.7363988 | 44.4304672 | -2.3312220 |
| LOC409697 | filamin-like | 0.4550502 | 44.4011293 | 5.8742832 |
| LOC412890 | A disintegrin and metalloproteinase with thrombospondin motifs 3-like | 0.4386222 | 44.3994658 | 3.8589714 |
| Antp | homeotic protein antennapedia | 0.8328867 | 44.3651380 | 4.6498102 |
| LOC412675 | aspartate aminotransferase, mitochondrial | 0.0953315 | 44.2197906 | 5.2375481 |
| LOC724172 | neurobeachin | 0.4425200 | 44.0527946 | 6.8423332 |
| LOC409886 | protein Mo25 | 0.0513405 | 43.9941190 | 7.6765459 |
| LOC409893 | protein alan shepard-like | 0.3574660 | 43.9289658 | 8.2293995 |
| LOC100577028 | uncharacterized LOC100577028 | 0.7958952 | 43.6606866 | 1.8879769 |
| LOC102656788 | uncharacterized LOC102656788 | 0.8853444 | 43.6313755 | 4.3831046 |
| LOC725179 | inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2 | 0.7626761 | 42.9891533 | 6.6126127 |
| LOC725038 | protein NPC2 homolog | 0.4672838 | 42.6979200 | 6.6209476 |
| LOC107965906 | probable serine/threonine-protein kinase DDB_G0282963 | 3.9192460 | 42.5831186 | -2.0428285 |
| LOC410427 | serine/threonine-protein kinase 26 | 0.2249230 | 42.5376748 | 6.0456200 |
| LOC552397 | Krueppel-like factor 6 | 0.4313806 | 42.4679502 | 6.0126500 |
| LOC726868 | uncharacterized LOC726868 | 0.5343878 | 42.4607874 | 3.4726681 |
| LOC410545 | CLIP-associating protein 1-A | 0.5607170 | 42.4489542 | 6.2997791 |
| LOC410373 | leucine-rich repeat-containing protein 15 | 0.8928317 | 42.3394555 | 6.1305221 |
| LOC408797 | nidogen-2 | 0.5151176 | 42.2712865 | 3.8394946 |
| LOC408669 | uncharacterized protein KIAA0930 homolog | 0.5893226 | 42.2467410 | 2.4870632 |
| LOC413569 | tyrosine-protein phosphatase Lar | 0.3174171 | 42.2033019 | 3.8981935 |
| LOC409774 | testican-1 | 0.2492862 | 42.0575467 | 7.0104552 |
| LOC413103 | cysteine and histidine-rich protein 1 homolog | 0.3224463 | 41.7701242 | 4.1983306 |
| LOC727434 | WD repeat-containing protein 7-like | 0.1930156 | 41.5271949 | 4.2349868 |
| LOC100576302 | uncharacterized LOC100576302 | 0.8203259 | 41.4260217 | 1.6211453 |
| LOC412161 | broad-complex core protein isoforms 1/2/3/4/5-like | 0.1492886 | 41.1217563 | 5.0186659 |
| LOC727106 | heterogeneous nuclear ribonucleoprotein H | 0.3750578 | 41.0502804 | 6.3981264 |
| LOC408481 | chloride intracellular channel exc-4 | 0.0681204 | 40.8937900 | 7.0213339 |
| LOC408666 | uncharacterized LOC408666 | 0.4555474 | 40.8833404 | 7.0659642 |
| LOC408976 | protein kinase shaggy | 0.1434148 | 40.8322781 | 8.4790476 |
| LOC725662 | uncharacterized LOC725662 | 0.2153916 | 40.7321237 | 7.8609766 |
| LOC551122 | coiled-coil domain-containing protein 42 like-2-like | 0.1649910 | 40.7081934 | 2.5269683 |
| LOC725190 | protein snail | 0.8789218 | 40.4172014 | 1.5901540 |
| LOC552073 | arylsulfatase B-like | 1.1362786 | 40.3667307 | 5.1288734 |
| LOC408951 | 14-3-3 protein epsilon | 0.2399115 | 40.2474675 | 8.2206228 |
| LOC410771 | WD repeat-containing protein 47 | 0.8327639 | 40.0944315 | 6.1179715 |
| LOC411297 | insulin-like peptide receptor | 0.5051831 | 39.8876249 | 7.1300434 |
| LOC411147 | AP-2 complex subunit alpha | 0.3373890 | 39.7075388 | 7.3739192 |
| Cox6c | cytochrome c oxidase subunit VIc | 0.4326286 | 39.6724190 | 8.2007072 |
| LOC551488 | uncharacterized LOC551488 | 0.1135167 | 39.5325932 | 7.2441056 |
| LOC412997 | DDB1- and CUL4-associated factor 10 | 0.5793826 | 39.5118571 | 5.7629605 |
| LOC409854 | nuclease-sensitive element-binding protein 1 | 0.5410835 | 39.5092714 | 8.9044821 |
| LOC408508 | uncharacterized LOC408508 | 0.6050633 | 39.4473711 | 1.7762126 |
| LOC408528 | colorectal mutant cancer protein | 0.1380043 | 39.4468083 | 4.8150712 |
| LOC107964178 | uncharacterized LOC107964178 | 0.7259378 | 39.3531055 | 1.2835532 |
| LOC409174 | mannosyl-oligosaccharide alpha-1,2-mannosidase IA | 0.3522182 | 39.1323797 | 6.1376780 |
| LOC408577 | uncharacterized LOC408577 | 0.7498906 | 38.8973061 | 6.7437416 |
| LOC409470 | zinc finger protein 271-like | 0.2790379 | 38.8962202 | 7.1150203 |
| LOC725393 | protein TIS11 | 0.2218050 | 38.8772597 | 6.5483958 |
| LOC413005 | protein NDRG3 | 0.2961807 | 38.7701251 | 6.7143786 |
| LOC411299 | Golgi resident protein GCP60 | 0.1911876 | 38.7146847 | 7.2969363 |
| LOC552235 | histone-lysine N-methyltransferase E(z) | 0.4449661 | 38.6278110 | 6.8389814 |
| LOC107964040 | uncharacterized LOC107964040 | 1.0628527 | 38.5306878 | 1.2459146 |
| LOC724851 | LIM domain only protein 3-like | 0.5423712 | 38.5242829 | 2.7674718 |
| LOC411347 | peripheral plasma membrane protein CASK | 0.4223071 | 38.5221723 | 4.8534353 |
| LOC408602 | MKL/myocardin-like protein 2 | 0.1694920 | 38.4956204 | 4.4633033 |
| LOC726587 | protein AF-10 | 0.4248966 | 38.3879826 | 7.7245804 |
| LOC408664 | homeodomain-interacting protein kinase 2 | 0.2565139 | 38.2474690 | 7.6360618 |
| LOC727129 | uncharacterized LOC727129 | 0.4886360 | 38.2037377 | 1.2675058 |
| LOC411744 | spectrin beta chain | 0.4341775 | 37.8907626 | 8.0225432 |
| LOC727442 | AT-rich interactive domain-containing protein 3A-like | 0.9154949 | 37.7951041 | 1.1215362 |
| LOC409956 | uncharacterized LOC409956 | 0.4396138 | 37.7634985 | 8.0015482 |
| LOC100578439 | chascon-like | 0.6250931 | 37.7309586 | 2.7914376 |
| LOC107964664 | uncharacterized LOC107964664 | 0.1807530 | 37.6753326 | 4.7323028 |
| LOC409904 | uncharacterized LOC409904 | 0.3399164 | 37.3682835 | 4.9599114 |
| Dnmt3 | DNA methyltransferase 3 | 0.7620547 | 37.2842233 | 2.2648340 |
| LOC413738 | uncharacterized LOC413738 | 0.4080998 | 37.0962742 | 4.9896404 |
| LOC726991 | kinesin light chain | 0.4456028 | 37.0936505 | 7.1907869 |
| LOC412968 | putative epidermal cell surface receptor | 0.6729307 | 37.0789698 | 2.1040745 |
| LOC408551 | collagen alpha-5(IV) chain | 0.6896381 | 36.8695218 | 5.4097072 |
| LOC107964589 | microtubule-associated protein futsch-like | 1.0469905 | 36.7965093 | -0.4148401 |
| LOC552844 | complexin | 0.5370284 | 36.6522157 | 1.6714067 |
| LOC410792 | TBC1 domain family member 22B | 0.3681978 | 36.5448956 | 7.2313865 |
| LOC409607 | ubiquitin-conjugating enzyme E2 Q2 | 0.4593620 | 36.3829403 | 7.6227966 |
| LOC107965124 | uncharacterized LOC107965124 | 0.3394781 | 36.2934133 | 3.1911142 |
| LOC551347 | UPF0605 protein CG18335-like | 0.2260932 | 36.2809657 | 3.5538364 |
| LOC408579 | thrombospondin type-1 domain-containing protein 4-like | 1.1410712 | 36.1300216 | 2.5991314 |
| LOC412187 | broad-complex core protein isoforms 1/2/3/4/5-like | 0.5065428 | 36.0663851 | 5.0785522 |
| LOC100577373 | uncharacterized LOC100577373 | 0.0290912 | 35.8541240 | 6.0079080 |
| LOC100577409 | solute carrier organic anion transporter family member 3A1 | 0.3218902 | 35.7717056 | 4.5649977 |
| LOC726709 | uncharacterized LOC726709 | 0.1661800 | 35.7072616 | 7.3845125 |
| LOC412256 | nucleosome-remodeling factor subunit NURF301 | 0.6035105 | 35.6792450 | 7.8098158 |
| LOC411277 | uncharacterized LOC411277 | 0.4866854 | 35.6514174 | 4.6195974 |
| LOC408874 | uncharacterized LOC408874 | 0.6247540 | 35.5604750 | 5.6701040 |
| LOC408430 | voltage-dependent L-type calcium channel subunit beta-2 | 0.3247563 | 35.5123387 | 4.6958626 |
| LOC410254 | glutaryl-CoA dehydrogenase, mitochondrial | 0.8542666 | 35.4819144 | 4.5143441 |
| pHCl | ligand-gated ion channel pHCl | 0.7445866 | 35.4384534 | 4.5722657 |
| LOC410497 | guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1 | 0.5636887 | 35.2912565 | 7.3066332 |
| Dscam | Down syndrome cell adhesion molecule | 0.5788090 | 35.2860836 | 2.8155088 |
| arm | armadillo segment polarity protein | 0.5582718 | 35.2467421 | 5.8251090 |
| LOC412108 | casein kinase I-like | 0.3559115 | 35.2443377 | 7.7413152 |
| LOC724706 | myosin-10 | 0.3552718 | 35.1338318 | 5.0471212 |
| LOC107965047 | uncharacterized LOC107965047 | 0.3888970 | 35.0714013 | 4.1643914 |
| LOC408331 | histone deacetylase 5 | 0.7331549 | 34.9145272 | 4.4785784 |
| LOC724652 | uncharacterized LOC724652 | 0.2942242 | 34.8986655 | 3.1858174 |
| LOC102653921 | uncharacterized LOC102653921 | 0.4856493 | 34.8313594 | 3.7989488 |
| LOC408766 | phosphatidylcholine:ceramide cholinephosphotransferase 2-like | 0.3524577 | 34.4631750 | 7.0025846 |
| LOC413912 | constitutive coactivator of PPAR-gamma-like protein 1 | 0.5232571 | 34.2865494 | 6.6771431 |
| LOC411049 | glutamate receptor ionotropic, kainate 2 | 0.5123108 | 33.8766363 | 3.6444012 |
| LOC551463 | decaprenyl-diphosphate synthase subunit 2 | 0.0235467 | 33.8326840 | 7.7355672 |
| Apd-1 | apidermin 1 | 1.4676910 | 33.7546606 | 5.5954227 |
| LOC552735 | uncharacterized LOC552735 | 0.6560018 | 33.7408237 | 3.3022705 |
| LOC409919 | excitatory amino acid transporter 1-like | 0.7635282 | 33.4775655 | 6.7377373 |
| LOC724592 | calmodulin-binding transcription activator 2 | 0.9620413 | 33.4328924 | 1.9804236 |
| LOC100576172 | uncharacterized LOC100576172 | 1.2222467 | 33.4319112 | 1.4509853 |
| LOC100576948 | uncharacterized LOC100576948 | 1.0021873 | 33.4139699 | -0.8997045 |
| LOC107964990 | uncharacterized LOC107964990 | 0.1038858 | 33.2998578 | 5.9626121 |
| LOC102655072 | microtubule-associated protein futsch-like | -0.0245747 | 33.2431189 | 2.4441026 |
| LOC551973 | cleavage and polyadenylation specificity factor subunit CG7185 | 0.4699249 | 33.2417766 | 4.2404639 |
| LOC409504 | flocculation protein FLO11-like | 0.4168184 | 33.1371758 | 3.6017752 |
| LOC726654 | T-box protein H15-like | 1.7155406 | 33.0219519 | -1.9118649 |
| LOC102656810 | uncharacterized LOC102656810 | 0.7436974 | 32.9880967 | 2.1142653 |
| LOC408960 | protein slit | 0.5742693 | 32.9463477 | 2.3789465 |
| LOC409665 | LIM domain and actin-binding protein 1 | 0.4036848 | 32.7286966 | 2.7221643 |
| LOC726547 | protein abrupt | 0.5945928 | 32.5781561 | 5.6673225 |
| Dsx | doublesex | 0.7612763 | 32.4487057 | 6.9002052 |
| LOC551319 | titin-like | 0.1912846 | 32.3358202 | 10.1358208 |
| LOC100577669 | uncharacterized LOC100577669 | 0.1459488 | 32.1286731 | 2.4973316 |
| LOC408311 | catenin delta-2 | 0.2518106 | 31.8692998 | 2.7921901 |
| LOC410061 | type I inositol 3,4-bisphosphate 4-phosphatase | 0.6459554 | 31.8249528 | 5.1564045 |
| LOC551460 | homeobox protein cut | 0.4649062 | 31.8053109 | -0.1987278 |
| LOC410729 | putative serine protease K12H4.7 | 0.4939130 | 31.7951559 | 6.0046490 |
| LOC551969 | serine protease HTRA2, mitochondrial | 0.2347571 | 31.7739674 | 6.8808219 |
| LOC552106 | uncharacterized LOC552106 | 0.0344027 | 31.6162597 | 9.0880211 |
| LOC727241 | uncharacterized LOC727241 | 0.7526091 | 31.5586918 | 3.8691194 |
| LOC100577903 | uncharacterized protein MAL13P1.304-like | 0.2732012 | 31.5316597 | 6.4381424 |
| LOC726461 | SH3 and multiple ankyrin repeat domains protein 1 | 0.2460409 | 31.4570025 | 6.2916194 |
| LOC102654111 | platelet glycoprotein V-like | 0.8294908 | 31.4492693 | 2.0244213 |
| LOC102654355 | uncharacterized LOC102654355 | 0.2815294 | 31.3383866 | 2.4355946 |
| LOC102654217 | histone-lysine N-methyltransferase SETMAR-like | 0.5069541 | 31.2425534 | 5.4379580 |
| LOC410589 | semaphorin-5A | 0.5252102 | 31.2264039 | 2.5680630 |
| LOC409714 | mucin-5AC | 0.6302105 | 31.0895682 | 3.5806259 |
| LOC107965593 | uncharacterized LOC107965593 | 1.0454900 | 31.0520546 | 0.5402742 |
| LOC410758 | zinc finger protein 36, C3H1 type-like 3 | 0.5470398 | 30.8275722 | 5.1664753 |
| LOC409932 | b(0,+)-type amino acid transporter 1-like | 0.5030340 | 30.8275689 | 4.4353024 |
| LOC102655871 | uncharacterized HTH-type transcriptional regulator HI_1364-like | 4.1278771 | 30.7563014 | -1.9771818 |
| LOC409787 | paramyosin, long form-like | 1.7318902 | 30.6657920 | 8.3189935 |
| Apime-ASTA | allatostatin A | 0.5965127 | 30.5744677 | 0.6750093 |
| LOC409674 | uncharacterized LOC409674 | 0.5445703 | 30.4686407 | 3.0045117 |
| LOC410997 | organic cation transporter 1-like | 1.0012803 | 30.3807028 | -0.0483803 |
| LOC414022 | ankyrin repeat domain-containing protein 12 | 0.2280528 | 30.2736328 | 6.1839302 |
| LOC409027 | leucine-rich repeat and calponin homology domain-containing protein 1 | 0.3665299 | 30.2620157 | 3.5553791 |
| LOC411613 | buffy | 0.1809430 | 30.2336315 | 5.5251259 |
| LOC413370 | hemicentin-2 | 0.8318231 | 30.2219743 | 3.9740424 |
| LOC410996 | tubulin beta chain | 0.9529356 | 29.8712374 | 1.2309103 |
| nanos | protein nanos | 0.4838715 | 29.7399955 | 5.3025934 |
| LOC413791 | TBC1 domain family member 24 | 0.3403187 | 29.5763079 | 6.9302186 |
| LOC100576805 | chromatin assembly factor 1 subunit A-B | 0.3623100 | 29.5601331 | 4.7276950 |
| LOC408367 | NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial | 0.6395970 | 29.5408167 | 8.5253483 |
| LOC100577416 | peptide chain release factor 2-like | 2.5773551 | 29.1640097 | -2.1687064 |
| Ancr-1 | AncR-1 non-coding nuclear RNA | 0.1926582 | 29.1639094 | 9.6736015 |
| LOC100578680 | uncharacterized LOC100578680 | 0.7429363 | 28.9635261 | 5.6848777 |
| LOC724785 | ran-binding protein 3 | 0.1524683 | 28.8689731 | 5.6420199 |
| LOC107964554 | uncharacterized LOC107964554 | 0.5996747 | 28.8570054 | -0.4893616 |
| LOC409961 | heterogeneous nuclear ribonucleoprotein 27C | 0.2810996 | 28.7483278 | 4.5388240 |
| LOC409025 | apolipoprotein D | 0.5670915 | 28.7358085 | 5.0130493 |
| LOC100576736 | uncharacterized LOC100576736 | 0.0804141 | 28.6674981 | 4.2806930 |
| LOC107964975 | uncharacterized LOC107964975 | 2.4179152 | 28.5998615 | 1.4682996 |
| LOC411046 | uncharacterized LOC411046 | 0.9467455 | 28.5466175 | 0.6484088 |
| LOC408618 | furin-like protease 2 | 0.4071598 | 28.4431206 | 1.4868629 |
| LOC413697 | PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK-like | 0.6997501 | 28.3797550 | 10.6143421 |
| LOC413416 | protein bicaudal C homolog 1-B | 0.4975816 | 28.3650971 | 7.1409137 |
| LOC726965 | uncharacterized LOC726965 | 1.5724606 | 28.2751460 | 6.1359016 |
| LOC552728 | uncharacterized LOC552728 | 0.1877640 | 28.1927113 | 8.0475830 |
| LOC408831 | ribosome-releasing factor 2, mitochondrial | 0.0963247 | 28.1299804 | 7.2418208 |
| LOC724852 | lipoma HMGIC fusion partner-like | 1.1626364 | 28.0688164 | -0.7019627 |
| LOC410837 | microsomal glutathione S-transferase 1 | 0.2102716 | 27.9999273 | 8.0416974 |
| LOC410674 | heterogeneous nuclear ribonucleoprotein L | 0.4395654 | 27.9631341 | 4.3848363 |
| LOC100578161 | apoptotic chromatin condensation inducer in the nucleus | 0.4867598 | 27.9447520 | 5.2845059 |
| LOC552278 | protein-tyrosine sulfotransferase | 0.2808879 | 27.9209167 | 3.8883943 |
| LOC107965443 | uncharacterized LOC107965443 | 0.4624323 | 27.6931749 | 1.4807603 |
| LOC411986 | uncharacterized LOC411986 | 0.7022227 | 27.4350241 | 3.7059059 |
| LOC408301 | type 1 phosphatidylinositol 4,5-bisphosphate 4-phosphatase | 0.1324124 | 27.2961191 | 5.9548006 |
| LOC409728 | 40S ribosomal protein S5 | 0.0229810 | 27.2687626 | 8.5068719 |
| LOC412053 | reticulocyte-binding protein 2 | 0.0279588 | 27.1908446 | 4.4736662 |
| LOC100576244 | aryl-phospho-beta-D-glucosidase BglH-like | 2.1504175 | 27.1237917 | -2.4172703 |
| LOC410613 | major facilitator superfamily domain-containing protein 6 | 1.0030220 | 27.0242714 | 4.2706378 |
| LOC410385 | methionine aminopeptidase 1 | 0.3471330 | 26.8633545 | 6.7425545 |
| LOC102655303 | uncharacterized LOC102655303 | 0.8196909 | 26.7650527 | 2.2783719 |
| LOC726231 | uncharacterized LOC726231 | 0.0910768 | 26.7039590 | 5.6707950 |
| LOC408332 | zinc finger protein 236-like | 0.5050589 | 26.6467322 | 5.4985135 |
| LOC552265 | rho GTPase-activating protein 32 | 0.3747107 | 26.6395655 | 4.5548821 |
| LOC727121 | uncharacterized LOC727121 | 0.7730646 | 26.6369465 | 4.9021967 |
| LOC410893 | transcription factor AP-2-epsilon | 0.5349766 | 26.6167071 | 3.2202172 |
| LOC100578883 | uncharacterized LOC100578883 | 0.2177330 | 26.5905183 | 4.8395603 |
| LOC409240 | HMG box-containing protein 4 | 0.2225509 | 26.5155735 | 6.5427083 |
| LOC107965515 | uncharacterized LOC107965515 | 0.5667265 | 26.4926658 | 5.6895554 |
| LOC409486 | RNA-binding protein 4.1-like | 0.2497813 | 26.4295389 | 6.2625063 |
| LOC410745 | glucose dehydrogenase [FAD, quinone] | 0.5734081 | 26.3639793 | 0.9246283 |
| LOC100577504 | uncharacterized LOC100577504 | 0.2603875 | 26.2449632 | 3.0310231 |
| 18-w | 18-wheeler | 1.0482142 | 26.2432484 | -0.6065425 |
| LOC107964499 | uncharacterized LOC107964499 | 0.4821985 | 26.1550354 | 5.1930252 |
| LOC406073 | homeobox protein prospero | 0.9255316 | 26.1360383 | 0.9694884 |
| LOC724442 | dentin sialophosphoprotein-like | 0.4867706 | 25.9927046 | 3.6425700 |
| LOC413117 | proton-coupled amino acid transporter 1 | 0.0322226 | 25.9764499 | 6.9691059 |
| LOC410689 | ELAV-like protein 2 | 0.5116314 | 25.9609690 | 3.6643426 |
| LOC726681 | protein cappuccino | 0.4802082 | 25.9132838 | 0.7459532 |
| LOC408649 | uncharacterized LOC408649 | 0.5275494 | 25.7838480 | 2.9711155 |
| LOC411524 | transmembrane protein 179 | -0.3561333 | 25.7498347 | 5.2332513 |
| LOC411175 | protein groucho-1-like | 0.2683927 | 25.6504533 | 2.6319909 |
| LOC107964332 | uncharacterized LOC107964332 | 0.8787300 | 25.5570107 | 1.1400506 |
| Camkii | calcium/calmodulin-dependent protein kinase II | 0.8603428 | 25.5507162 | 4.5994426 |
| LOC726063 | zinc finger protein 569-like | 0.3315588 | 25.5496172 | 7.0430774 |
| LOC725775 | uncharacterized LOC725775 | 0.8773677 | 25.3419076 | 0.5145279 |
| LOC412491 | double-stranded RNA-specific editase 1-like | 0.4202410 | 25.2965639 | 4.9597517 |
| LOC107965074 | uncharacterized LOC107965074 | 1.4799892 | 25.1133203 | -1.9193848 |
| LOC413029 | serine/threonine-protein kinase OSR1-like | 0.5399995 | 25.0839469 | 6.5761739 |
| LOC409589 | 60S ribosomal protein L10 | -0.2844920 | 24.8733817 | 9.0105426 |
| LOC408271 | rap1 GTPase-activating protein 1 | 0.7754344 | 24.8410131 | 2.6381220 |
| LOC408696 | uncharacterized LOC408696 | 0.6539592 | 24.8022785 | 4.5594633 |
| LOC408900 | tyrosine-protein phosphatase non-receptor type 61F-like | 0.2419910 | 24.7925737 | 7.2210216 |
| LOC411126 | broad-complex core protein isoforms 1/2/3/4/5 | 0.3006782 | 24.6490835 | 5.1348405 |
| LOC724724 | ATP-dependent 6-phosphofructokinase | 0.5912935 | 24.6097991 | 8.5016778 |
| LOC102656579 | UPF0488 protein CG14286 | 0.3002477 | 24.5315261 | 3.2461951 |
| LOC408552 | collagen alpha-1(IV) chain | 0.3285198 | 24.5276777 | 6.5803834 |
| LOC551941 | uncharacterized LOC551941 | -0.2514606 | 24.1539642 | 6.5444572 |
| LOC550955 | putative gamma-glutamylcyclotransferase CG2811 | 0.0436192 | 24.1385217 | 7.5315666 |
| LOC727429 | histone-lysine N-methyltransferase SETMAR-like | 0.4408794 | 23.6416761 | 6.5292752 |
| LOC726913 | cytochrome b5-like | 0.3401192 | 23.6037845 | 4.7822457 |
| LOC100577455 | golgin subfamily A member 6-like protein 22 | 0.4863755 | 23.4824132 | 4.8653361 |
| LOC552369 | synaptotagmin-like protein 5 | -0.0412307 | 23.4285877 | 6.8524612 |
| LOC102654773 | zinc finger protein 664-like | 0.7425499 | 23.4092713 | 2.2744256 |
| LOC410307 | angiomotin-like protein 1 | 0.4529845 | 23.3964682 | 6.4346317 |
| LOC107964054 | uncharacterized LOC107964054 | 0.4876015 | 23.3421479 | -0.9794092 |
| LOC410938 | polypeptide N-acetylgalactosaminyltransferase 13 | 0.3343916 | 23.3355464 | 4.7555741 |
| LOC410994 | tubulin beta chain-like | 1.1131821 | 23.3323796 | 0.2782197 |
| LOC726469 | lysine-specific histone demethylase 1A | 0.6794721 | 23.2658218 | 0.8650202 |
| LOC100578282 | uncharacterized LOC100578282 | 0.7060401 | 23.2271773 | 3.1242148 |
| 5-HT2alpha | serotonin receptor | 0.0636495 | 23.1675024 | 5.1110442 |
| LOC410203 | POU domain protein CF1A | 0.3420331 | 23.1389022 | 2.2611938 |
| LOC409539 | microtubule-associated protein tau-like | 0.6040500 | 23.1110192 | 2.3655422 |
| LOC412801 | mediator of RNA polymerase II transcription subunit 12-like | 0.6114831 | 23.0183094 | 3.4814670 |
| LOC410334 | uncharacterized LOC410334 | 0.1878730 | 22.8098704 | 1.2842821 |
| LOC409881 | myosin regulatory light chain 2 | 0.5496793 | 22.7346812 | 10.0604401 |
| LOC413448 | raf homolog serine/threonine-protein kinase phl | 0.4643983 | 22.6080920 | 5.4083533 |
| LOC100577632 | phosphopantothenoylcysteine decarboxylase subunit VHS3-like | 0.3680783 | 22.5917834 | 1.3031670 |
| LOC100576640 | uncharacterized LOC100576640 | 0.3285005 | 22.5723873 | 6.4549197 |
| LOC726729 | helix-loop-helix protein 11 | 0.5067987 | 22.4671513 | 1.1191583 |
| LOC552342 | lysophospholipid acyltransferase 2 | 0.5019372 | 22.4509220 | 6.4845966 |
| LOC725651 | uncharacterized LOC725651 | 1.2696194 | 22.3048345 | -0.4110694 |
| LOC102654448 | endochitinase A-like | 0.7280061 | 22.2780483 | -0.2906263 |
| LOC107965147 | uncharacterized LOC107965147 | 0.5199260 | 22.2591710 | 5.3601921 |
| LOC409882 | TLD domain-containing protein 2 | 0.2241665 | 22.2103658 | 8.1160913 |
| LOC408729 | uncharacterized LOC408729 | 0.6519078 | 22.1900162 | 0.8106041 |
| LOC725717 | polycomb group RING finger protein 3 | -0.0016226 | 22.1562516 | 5.4644028 |
| LOC100577440 | uncharacterized LOC100577440 | 0.3209153 | 22.1159659 | 4.1337071 |
| LOC107964227 | uncharacterized LOC107964227 | 1.3714872 | 22.0930448 | 3.0841407 |
| LOC551914 | actin-like protein 6B | 0.1692384 | 22.0911228 | 5.2192049 |
| LOC102654518 | uncharacterized LOC102654518 | 1.6684932 | 21.9821375 | 0.6872862 |
| LOC724763 | odorant receptor 9a | 0.7868646 | 21.8695316 | 1.2501274 |
| LOC412865 | collagen alpha-2(IX) chain | 0.5236251 | 21.8425394 | 2.4550826 |
| LOC552079 | homeobox protein homothorax | 0.3811959 | 21.7947211 | 2.4053414 |
| LOC410776 | protein 60A | 1.7940451 | 21.7286992 | 0.0398473 |
| LOC411276 | hybrid signal transduction histidine kinase D | 0.4916469 | 21.7247231 | 3.4427726 |
| LOC107964136 | uncharacterized LOC107964136 | 0.7861154 | 21.4742570 | 1.6613318 |
| LOC102656403 | histone-lysine N-methyltransferase SETMAR-like | 0.4349591 | 21.3997125 | 7.3910766 |
| Obp2 | odorant binding protein 2 | 1.0657638 | 21.1677684 | -0.6087805 |
| LOC552816 | vesicular integral-membrane protein VIP36 | -0.0066020 | 21.1225803 | 8.2415095 |
| LOC725286 | transcription factor TFIIIB component B’’ homolog | 0.0361333 | 21.1181951 | 4.2192805 |
| LOC102655961 | uncharacterized LOC102655961 | 0.6676165 | 21.0718730 | 0.0341600 |
| LOC551895 | serine/threonine-protein kinase 17A-like | 0.4510648 | 20.9944561 | 4.0942548 |
| LOC412268 | transcription initiation factor IIA subunit 1 | 0.1204150 | 20.9444741 | 7.8221813 |
| LOC100576536 | uncharacterized LOC100576536 | 0.1812868 | 20.8899113 | 4.1037439 |
| LOC102655432 | uncharacterized LOC102655432 | 0.6240620 | 20.7900750 | 3.4797511 |
| LOC100577332 | GATA-binding factor C-like | 0.8454175 | 20.7159449 | 2.6284218 |
| LOC408568 | peptidyl-alpha-hydroxyglycine alpha-amidating lyase 1-like | -0.0276611 | 20.7007633 | 6.5979746 |
| LOC107964878 | uncharacterized LOC107964878 | 0.8146630 | 20.6981651 | -0.3061001 |
| LOC410365 | laccase 2 | 0.8322692 | 20.6865253 | 1.5948551 |
| LOC102655865 | uncharacterized LOC102655865 | 0.1568235 | 20.6608000 | 5.3582646 |
| LOC411079 | protein grainyhead | 0.6175445 | 20.6425596 | 0.8385096 |
| LOC409981 | titin homolog | 0.5890039 | 20.6336013 | 1.2170686 |
| LOC551762 | adenosylhomocysteinase 2-like | 0.2054268 | 20.6331773 | 7.2673276 |
| Vg | vitellogenin | 0.8456437 | 20.5830666 | 10.0493996 |
| LOC410831 | casein kinase I | 0.3018896 | 20.5480728 | 5.3177036 |
| LOC551320 | uncharacterized LOC551320 | 0.2169892 | 20.3701789 | 4.3367435 |
| LOC107964838 | probable uridine nucleosidase 2 | -0.2738140 | 20.2529952 | 7.1552359 |
| LOC724421 | fibrillin-2 | 0.5498619 | 20.1968518 | 4.9200005 |
| LOC107964969 | uncharacterized LOC107964969 | 0.2474744 | 20.1114662 | 4.3289384 |
| LOC726866 | uncharacterized LOC726866 | 0.3769560 | 20.0948692 | 4.3956932 |
| LOC100577347 | SET and MYND domain-containing protein 4-like | 0.7247625 | 20.0606745 | 1.5911798 |
| LOC413288 | polycomb protein Pcl | 0.4595948 | 19.9667558 | 5.6411490 |
| LOC102656164 | uncharacterized LOC102656164 | 0.7838831 | 19.9597326 | 0.1238349 |
| LOC102656939 | histone-lysine N-methyltransferase SETMAR-like | 0.5061513 | 19.9569435 | 5.1805376 |
| LOC410092 | dual oxidase maturation factor 1 | 0.3169453 | 19.9505869 | 3.2598096 |
| LOC552093 | methyltransferase-like protein 2-A | 0.1025324 | 19.9255006 | 6.7746281 |
| LOC408942 | uncharacterized protein T19C3.4 | 0.4515342 | 19.8579187 | 5.4807403 |
| LOC102655807 | uncharacterized LOC102655807 | 0.2713847 | 19.7803179 | 0.7347393 |
| LOC408809 | diacylglycerol kinase theta | 0.4506090 | 19.5738825 | 4.3025528 |
| LOC100578446 | pituitary homeobox x | 0.1539443 | 19.5605402 | 3.2226758 |
| LOC409347 | U4/U6.U5 tri-snRNP-associated protein 1 | 0.3052075 | 19.5166949 | 4.9209025 |
| LOC413759 | SCY1-like protein 2 | 0.4485871 | 19.5130255 | 2.6978503 |
| LOC726804 | protein BTG2-like | 0.1293200 | 19.4891026 | 7.7254270 |
| LOC408705 | RNA-binding protein 25-like | 0.2839210 | 19.4191618 | 5.5210858 |
| LOC726323 | uncharacterized LOC726323 | 0.1952412 | 19.1816604 | 9.3193077 |
| LOC409849 | immunoglobulin-like and fibronectin type III domain containing 12 | 0.3143551 | 19.1508160 | 6.2416287 |
| LOC408670 | Down syndrome cell adhesion molecule-like protein Dscam2 | 0.6184037 | 19.0672069 | 2.6028238 |
| LOC412917 | probable serine/threonine-protein kinase dyrk2 | 1.2305860 | 18.9494091 | 1.0334384 |
| LOC107965097 | uncharacterized LOC107965097 | 0.3303295 | 18.8685366 | 3.7240408 |
| LOC107965910 | uncharacterized LOC107965910 | 0.6278676 | 18.8533624 | 1.3772517 |
| LOC726437 | tctex1 domain-containing protein 2-like | 0.1451860 | 18.8013328 | 2.6068488 |
| LOC100577517 | uncharacterized LOC100577517 | 0.3976826 | 18.7763691 | 5.6328533 |
| LOC102654893 | uncharacterized LOC102654893 | 0.6823108 | 18.7448960 | -1.0422949 |
| LOC408462 | uncharacterized LOC408462 | 0.9049511 | 18.6207559 | 0.8327332 |
| LOC414025 | zinc finger protein Noc-like | 0.2393670 | 18.6165496 | 3.7801315 |
| LOC100576248 | uncharacterized LOC100576248 | 1.7608590 | 18.6020102 | -1.0608890 |
| LOC409789 | uncharacterized peptidase C1-like protein F26E4.3 | 0.3928256 | 18.5691335 | 2.3585918 |
| LOC107965487 | uncharacterized LOC107965487 | 0.0286138 | 18.5314148 | 3.5941483 |
| LOC107964202 | uncharacterized LOC107964202 | 0.1794650 | 18.5257795 | 5.8477135 |
| LOC102655814 | ras-related and estrogen-regulated growth inhibitor | 0.3053828 | 18.5092056 | 4.8818786 |
| LOC107964513 | uncharacterized LOC107964513 | -0.1161022 | 18.4556587 | 1.6147178 |
| LOC408996 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase | 0.2189665 | 18.3926637 | 3.6227149 |
| LOC552804 | tubulin-specific chaperone cofactor E-like protein | 0.0246197 | 18.3438666 | 4.7939990 |
| LOC409619 | uncharacterized LOC409619 | 0.6986559 | 18.3084262 | 4.6474514 |
| LOC100576966 | trichohyalin-like | -0.0236049 | 18.2757942 | 4.5701386 |
| LOC725581 | anion exchange protein 2 | 0.4584406 | 18.2361397 | 4.6277062 |
| LOC551774 | acidic leucine-rich nuclear phosphoprotein 32 family member B | 0.2546331 | 18.2070617 | 7.8393811 |
| LOC413786 | netrin-A-like | 0.4092727 | 18.1614105 | -0.0362624 |
| LOC411586 | uncharacterized LOC411586 | 0.2552443 | 18.1550149 | 6.4867424 |
| LOC725665 | 5-oxoprolinase | 0.8193132 | 18.1416656 | 1.4827057 |
| LOC411326 | centromere-associated protein E | 0.2503000 | 18.0162085 | 8.0119478 |
| LOC100576924 | ankyrin repeat and death domain-containing protein 1A-like | 0.2334118 | 17.9842553 | 3.7079061 |
| LOC100577889 | uncharacterized LOC100577889 | 0.2790227 | 17.8435229 | 5.9887153 |
| Apd-2 | apidermin 2 | 1.3446245 | 17.8353692 | 3.8875491 |
| LOC413510 | SNF-related serine/threonine-protein kinase | 0.3124024 | 17.8040625 | 5.2273936 |
| GluCl | glutamate-gated chloride channel | 0.3639810 | 17.7454547 | 5.4438479 |
| LOC107965914 | histone-lysine N-methyltransferase SETMAR-like | 0.6467224 | 17.7042930 | 4.6480420 |
| LOC408539 | sideroflexin-3 | 0.8619684 | 17.5745502 | 6.0825804 |
| LOC408329 | uncharacterized LOC408329 | 0.8392144 | 17.4016233 | 1.4102163 |
| LOC724594 | ADP-ribosylation factor-like protein 4C | 0.5224383 | 17.3958879 | -0.3088410 |
| LOC100577044 | histone-lysine N-methyltransferase SETMAR-like | 0.4775871 | 17.2612829 | 4.8993453 |
| LOC408275 | uncharacterized LOC408275 | -0.0280326 | 17.2479269 | 3.8705288 |
| LOC409126 | ras-related protein Rab-2 | 0.0332093 | 17.1831048 | 7.8897426 |
| LOC725991 | sodium/potassium-transporting ATPase subunit beta-2-like | 0.2940091 | 17.1272797 | 5.6987266 |
| LOC410424 | pyruvate dehydrogenase (acetyl-transferring) kinase, mitochondrial | 0.2661234 | 17.1158853 | 4.8102779 |
| LOC413025 | peroxidasin | 0.4531771 | 17.0538163 | 4.5784236 |
| LOC408888 | leucine-rich repeats and immunoglobulin-like domains protein 1 | 1.0279570 | 16.9757481 | 2.4872914 |
| LOC408411 | transcription factor Sox-2 | -0.0310655 | 16.8985622 | 5.1584712 |
| LOC102656765 | uncharacterized LOC102656765 | 0.0883909 | 16.8960595 | 6.2810984 |
| LOC102655726 | uncharacterized LOC102655726 | 0.6357394 | 16.8688638 | 1.8416117 |
| LOC410911 | glycosaminoglycan xylosylkinase | 0.1607174 | 16.8516218 | 6.1380019 |
| LOC102653778 | uncharacterized LOC102653778 | 0.5836338 | 16.8277606 | -2.4518180 |
| LOC410498 | potassium voltage-gated channel subfamily H member 6 | 0.4016001 | 16.7000146 | 2.9138849 |
| LOC551272 | talin-1 | 0.3555996 | 16.6979438 | 2.2641375 |
| LOC725551 | high mobility group protein DSP1 | 0.0582776 | 16.5162550 | 8.5490946 |
| LOC410219 | pre-mRNA 3’-end-processing factor FIP1-like | 0.4281981 | 16.4191532 | 4.8340942 |
| LOC102655765 | dnaJ homolog subfamily C member 4-like | 0.3380158 | 16.3914675 | 3.1062194 |
| LOC724242 | protein neuralized | 0.1829734 | 16.3499652 | 3.5843121 |
| LOC551904 | glycerol-3-phosphate dehydrogenase, mitochondrial | 0.3613637 | 16.3183750 | 8.5082875 |
| LOC408394 | collagen alpha-1(I) chain-like | 0.7032442 | 16.2905370 | -1.3530695 |
| LOC552236 | threonine aspartase 1 | -0.0634647 | 16.1993804 | 5.7441175 |
| LOC724679 | uncharacterized LOC724679 | 0.6572317 | 16.0776245 | 4.6160123 |
| LOC408365 | uncharacterized LOC408365 | 0.5272989 | 16.0736178 | 1.4876340 |
| LOC724634 | golgin subfamily B member 1 | 0.1789020 | 15.9545531 | 6.5195077 |
| LOC551792 | cytosolic carboxypeptidase 1-like | 0.6112583 | 15.9219301 | 2.5652298 |
| LOC102654800 | histone-lysine N-methyltransferase SETMAR-like | 0.4336056 | 15.9133207 | 5.3499652 |
| LOC551737 | synapsin | 0.3773225 | 15.8878217 | 2.5755630 |
| LOC551866 | NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial | 0.1439304 | 15.8350388 | 9.7422371 |
| LOC102655188 | zinc finger protein 707-like | 1.2552558 | 15.6026975 | -0.7348611 |
| LOC726822 | geranylgeranyl transferase type-2 subunit beta | -0.0561205 | 15.5444714 | 6.8442681 |
| LOC408465 | vesicle-associated membrane protein 2 | 0.3178818 | 15.5288064 | 5.2375404 |
| LOC412245 | acidic mammalian chitinase | 0.1878408 | 15.5200718 | 7.3157460 |
| LOC726947 | TGF-beta-activated kinase 1 and MAP3K7-binding protein 3 | 0.3017797 | 15.3534864 | 3.2651018 |
| LOC725273 | uncharacterized LOC725273 | 0.7070318 | 15.3520556 | 0.5486050 |
| LOC408793 | histone acetyltransferase KAT7 | 0.2300593 | 15.1951457 | 4.6951068 |
| LOC551957 | facilitated trehalose transporter Tret1-like | 0.9978614 | 15.1172679 | 5.0320591 |
| LOC551709 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1 | 0.3009552 | 15.1086959 | 3.8342267 |
| LOC410580 | fragile X mental retardation syndrome-related protein 1 | 0.1804070 | 15.0689033 | 5.0570581 |
| LOC102654740 | tetratricopeptide repeat protein 25-like | 0.4356622 | 14.9460311 | -2.2679024 |
| LOC727135 | uncharacterized LOC727135 | 0.0488135 | 14.8879994 | 6.6049858 |
| LOC409456 | AT-rich interactive domain-containing protein 4B | 0.1660294 | 14.8711399 | 7.0988473 |
| LOC410417 | receptor-type tyrosine-protein phosphatase kappa-like | 0.7057359 | 14.8363483 | 1.8955141 |
| LOC102654792 | uncharacterized LOC102654792 | 0.7338194 | 14.7707842 | 0.7030198 |
| LOC724344 | probable Ras GTPase-activating protein | 0.3551582 | 14.7622743 | 4.8684032 |
| LOC107965922 | histone-lysine N-methyltransferase SETMAR-like | 0.2340164 | 14.6698226 | 3.0154546 |
| LOC409034 | uncharacterized LOC409034 | -0.0899413 | 14.5475139 | 4.6160966 |
| LOC409166 | E3 ubiquitin-protein ligase TRIM23-like | 0.2611111 | 14.5135869 | 6.6000176 |
| LOC107964188 | uncharacterized LOC107964188 | 2.1740449 | 14.4784659 | -2.2627623 |
| LOC411238 | LIM domain-binding protein 2 | 0.3970724 | 14.4367117 | 1.5562068 |
| LOC408435 | POU domain, class 6, transcription factor 2 | 0.6226703 | 14.3939696 | 3.5527447 |
| LOC107965594 | uncharacterized LOC107965594 | 0.5920465 | 14.3904458 | -0.0522907 |
| LOC410439 | basement membrane-specific heparan sulfate proteoglycan core protein-like | 0.3207985 | 14.3080897 | 4.0818223 |
| LOC100576147 | fork head domain-containing protein FD4 | 1.0094645 | 14.2929214 | 1.0051234 |
| CPR17 | cuticular protein 17 | 0.7632292 | 14.2821072 | 1.1311427 |
| LOC551649 | nuclear receptor subfamily 2 group F member 6 | 0.2933858 | 14.1340587 | 1.4701898 |
| LOC409649 | solute carrier organic anion transporter family member 5A1 | 0.2926733 | 14.0550133 | 5.3152346 |
| LOC408384 | transcriptional adapter 2-alpha | 0.0830576 | 14.0473840 | 3.8174621 |
| LOC551415 | probable cytosolic iron-sulfur protein assembly protein Ciao1 | -0.3648532 | 13.8095778 | 7.0828495 |
| AChE-2 | acetylcholinesterase 2 | 0.5647554 | 13.7143069 | 4.4373702 |
| LOC410577 | acid sphingomyelinase-like phosphodiesterase 3a | 0.6041300 | 13.5820277 | 1.5666765 |
| LOC726094 | uncharacterized LOC726094 | 2.1060000 | 13.4500606 | -2.4222344 |
| LOC410562 | serine/threonine-protein kinase SBK1 | 0.4935322 | 13.4433663 | 0.7040872 |
| LOC102655500 | dual specificity tyrosine-phosphorylation-regulated kinase 2-like | 0.2783821 | 13.4183912 | 2.0374493 |
| LOC107964293 | zinc finger protein 628-like | 0.4061206 | 13.3214891 | 5.0757810 |
| LOC100578523 | protein glass-like | 0.4212144 | 13.3181205 | 5.2030556 |
| LOC107964940 | uncharacterized LOC107964940 | 0.5215511 | 13.3016908 | 0.0023124 |
| LOC550824 | nucleosome assembly protein 1-like 1 | 0.1050976 | 13.2618058 | 9.1711536 |
| LOC100577567 | protein unc-93 homolog A-like | -0.1016814 | 13.2304645 | 2.2403180 |
| LOC725019 | loricrin-like | 1.5669304 | 13.2019616 | -2.3545127 |
| LOC726972 | uncharacterized LOC726972 | 0.4382492 | 13.1698876 | 4.9312093 |
| LOC408480 | PTB domain-containing engulfment adapter protein 1 | 0.3355155 | 13.1532776 | 7.4302608 |
| LOC409327 | uncharacterized LOC409327 | 0.2090775 | 13.0968463 | 4.0623947 |
| LOC100576671 | polycomb group protein Psc-like | 0.1711050 | 13.0427938 | 2.0869558 |
| E74 | ecdysteroid-regulated gene E74 | 0.2170894 | 13.0382038 | 4.8315729 |
| LOC725105 | UDP-sugar transporter UST74c-like | 0.0257338 | 12.8398605 | 6.8185357 |
| LOC410233 | extracellular sulfatase SULF-1 homolog | 0.5368855 | 12.7766153 | 2.1393407 |
| LOC107965610 | uncharacterized LOC107965610 | 0.5677902 | 12.7323687 | 3.1061287 |
| LOC727473 | signal recognition particle 19 kDa protein | -0.4629216 | 12.4380215 | 5.4373183 |
| Glob1 | globin 1 | 0.4499165 | 12.4191293 | 7.1587301 |
| LOC411159 | uncharacterized LOC411159 | 0.5401878 | 12.4160215 | 1.5213255 |
| LOC408351 | serine-rich adhesin for platelets | 0.1378982 | 12.4092236 | 4.0881964 |
| LOC410621 | multiple epidermal growth factor-like domains protein 10 | 0.7202200 | 12.3957343 | 2.3144451 |
| LOC552031 | chromodomain-helicase-DNA-binding protein Mi-2 homolog | 0.2594340 | 12.3421868 | 6.9291011 |
| LOC102655950 | peroxisome biogenesis factor 2 | 0.3118318 | 12.3394487 | 4.6407610 |
| LOC409835 | E3 ubiquitin-protein ligase MARCH2 | 0.1611970 | 12.2241251 | 1.1776620 |
| LOC552368 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | 0.9343190 | 12.2215964 | -0.0177632 |
| LOC410956 | serine/threonine-protein kinase NLK | 0.4061026 | 12.1016051 | 5.3015804 |
| LOC410363 | uncharacterized LOC410363 | 0.4574174 | 12.0860992 | 2.0061453 |
| LOC551663 | disintegrin and metalloproteinase domain-containing protein 11 | 0.1937249 | 12.0404696 | 2.0799909 |
| LOC412263 | endoplasmic reticulum aminopeptidase 2-like | 0.4355817 | 11.9573494 | 5.6125844 |
| LOC107964555 | uncharacterized LOC107964555 | 0.4333723 | 11.9308774 | 1.9037464 |
| LOC102656639 | midasin-like | 0.7786702 | 11.8962028 | -1.1895592 |
| LOC551225 | puff-specific protein Bx42 | 0.1510036 | 11.8777615 | 7.2430745 |
| LOC408676 | CREB-regulated transcription coactivator 1-like | 0.1952596 | 11.8208882 | 1.4487260 |
| LOC551525 | uncharacterized LOC551525 | 0.5016380 | 11.7277891 | 1.5133473 |
| LOC724412 | muscle segmentation homeobox | 0.2768070 | 11.6695300 | 1.9007164 |
| LOC552246 | transmembrane protein 43 homolog | -0.0386460 | 11.6270055 | 6.9651748 |
| LOC408374 | mucin-19 | 0.2245035 | 11.5912456 | 6.2137484 |
| LOC412231 | trans-1,2-dihydrobenzene-1,2-diol dehydrogenase-like | -0.1683470 | 11.5037715 | 4.9271191 |
| LOC100576164 | uncharacterized LOC100576164 | 0.6689314 | 11.4303943 | 0.2776862 |
| LOC408905 | uncharacterized LOC408905 | 0.2476828 | 11.3785131 | 4.0996332 |
| LOC107965317 | uncharacterized LOC107965317 | 0.8776717 | 11.1932584 | 1.0422434 |
| Mir87-2 | microRNA 87-2 | 1.3132049 | 11.1649852 | -1.8504540 |
| LOC100577704 | uncharacterized LOC100577704 | 0.2807105 | 11.1457256 | 1.5918658 |
| LOC107964028 | uncharacterized LOC107964028 | 0.0739038 | 11.1059274 | 1.7434431 |
| 5-HT1 | serotonin receptor | 0.7379471 | 11.0830037 | 0.7230219 |
| LOC107965483 | uncharacterized LOC107965483 | 0.7358346 | 10.6430083 | 2.2707253 |
| LOC411457 | galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase P | 0.2677812 | 10.6373307 | 6.9248461 |
| LOC551623 | polyadenylate-binding protein RBP45C-like | 0.5449976 | 10.4765137 | 2.6575200 |
| LOC410780 | mitochondrial sodium/hydrogen exchanger 9B2-like | 0.0887878 | 10.4361198 | 4.1040196 |
| LOC102655004 | uncharacterized LOC102655004 | 0.4161651 | 10.3185064 | 1.1474685 |
| LOC409369 | brain protein I3 | -0.2014090 | 10.2504215 | 5.2407268 |
| LOC107965784 | histone-lysine N-methyltransferase SETMAR-like | 0.2157444 | 10.1856923 | 5.8886706 |
| LOC727261 | protein odr-4 homolog | 0.0551124 | 10.1155821 | 7.0820891 |
| LOC100578579 | uncharacterized LOC100578579 | 0.0716908 | 10.0919639 | 4.2934388 |
| LOC413048 | bifunctional 3’-phosphoadenosine 5’-phosphosulfate synthase 2-like | 0.6461306 | 10.0538600 | 1.9819320 |
| LOC100578824 | zinc finger protein ZIC 4-like | 1.1000933 | 10.0075892 | 0.6088155 |
| LOC724934 | paired mesoderm homeobox protein 2A | 0.4768142 | 9.7718113 | -0.3264172 |
| LOC100577422 | uncharacterized LOC100577422 | 0.1709292 | 9.7532709 | 2.9808861 |
| LOC724994 | uncharacterized LOC724994 | 0.0466847 | 9.7302042 | 4.1308225 |
| LOC411116 | nephrin | -0.0224304 | 9.7150451 | -0.5349062 |
| LOC409650 | solute carrier organic anion transporter family member 2A1 | 0.1907995 | 9.7083592 | 6.2448723 |
| LOC410231 | protein toll | 1.0060487 | 9.6493384 | -2.4191363 |
| LOC100577801 | zinc finger protein ush | 0.1110936 | 9.6005254 | 2.8388854 |
| Tg | transglutaminase | 0.8968795 | 9.5994637 | 2.1716729 |
| LOC726818 | beta-hexosaminidase subunit beta-like | 0.1880836 | 9.5918352 | 4.3333163 |
| LOC408890 | protein groucho-1 | 0.1969164 | 9.5841644 | 6.1389567 |
| LOC726457 | flocculation protein FLO11-like | 0.5241302 | 9.5634901 | 0.0748854 |
| LOC408314 | uncharacterized LOC408314 | 0.1671270 | 9.5463680 | 4.7429534 |
| LOC724315 | forkhead box protein D3-like | 0.2208787 | 9.4424126 | 1.8344594 |
| LOC100577092 | uncharacterized LOC100577092 | 0.2602594 | 9.4241440 | 0.5322744 |
| LOC107964173 | uncharacterized LOC107964173 | 0.4569645 | 9.4208119 | -2.1743062 |
| LOC107964049 | uncharacterized LOC107964049 | 0.7567284 | 9.4027957 | 0.1187473 |
| LOC552012 | SH2B adapter protein 1 | 0.2974280 | 9.3607340 | 2.8524769 |
| LOC724468 | uncharacterized LOC724468 | 1.5042895 | 9.2959422 | -0.1407619 |
| LOC551520 | golgin subfamily A member 2-like | -0.0111814 | 9.2352394 | 6.8676321 |
| LOC100578194 | uncharacterized LOC100578194 | 0.3880754 | 9.2291527 | 5.8035429 |
| LOC102653612 | uncharacterized LOC102653612 | 1.1019973 | 9.2253712 | -0.2417043 |
| LOC725754 | zinc finger protein castor homolog 1-like | 0.5312870 | 9.2001605 | 3.1010421 |
| LOC724326 | peptidyl-prolyl cis-trans isomerase | 0.1404324 | 9.1016797 | 1.3795101 |
| LOC100577343 | uncharacterized LOC100577343 | 0.4883624 | 9.0607755 | 3.9259213 |
| LOC551419 | alkaline ceramidase | -0.3538829 | 8.6210680 | 5.1890971 |
| LOC724240 | flap endonuclease GEN | 0.2016564 | 8.5944290 | 4.6413378 |
| LOC413030 | transmembrane protein 189 | 0.0476758 | 8.4329697 | 5.6420575 |
| LOC102654436 | uncharacterized LOC102654436 | 1.7093575 | 8.4270840 | -0.9772877 |
| LOC551086 | protein abrupt | 0.4256066 | 8.3644547 | 5.4937506 |
| LOC727027 | cleft lip and palate transmembrane protein 1 homolog | -0.1245296 | 8.3595268 | 8.9979715 |
| LOC100576243 | histone-lysine N-methyltransferase SETMAR-like | 0.1660021 | 8.2884138 | 5.5321925 |
| LOC412410 | U3 small nucleolar RNA-associated protein 6 homolog | -0.0756385 | 8.2812812 | 5.8885374 |
| LOC102655352 | uncharacterized LOC102655352 | 0.2656191 | 8.2444836 | 0.7052313 |
| LOC409073 | equilibrative nucleoside transporter 4 | 0.5012776 | 8.2187829 | 2.8726509 |
| LOC107965613 | uncharacterized LOC107965613 | 0.2352884 | 8.1451211 | 2.4386413 |
| LOC551506 | sex combs reduced | 0.6558431 | 8.0696090 | 1.4355741 |
| LOC107965822 | uncharacterized LOC107965822 | 0.8212176 | 7.9626532 | 2.8204608 |
| LOC725714 | RNA-binding protein 25-like | 0.6444295 | 7.8390267 | 2.0551230 |
| LOC102656667 | uncharacterized LOC102656667 | 0.0855469 | 7.8312367 | -0.1395966 |
| LOC107964309 | uncharacterized LOC107964309 | 1.4156364 | 7.7759293 | -1.3233481 |
| LOC551806 | aquaporin-like | 0.0663139 | 7.7577685 | 4.8414772 |
| LOC100576795 | uncharacterized protein YJR142W | -0.1548303 | 7.7444633 | 7.7321510 |
| LOC551146 | glycine-rich protein DOT1 | 0.1920850 | 7.6867707 | 4.2469400 |
| LOC102656707 | uncharacterized LOC102656707 | 2.0611603 | 7.5368836 | -0.4537934 |
| LOC408761 | uncharacterized LOC408761 | -0.0507185 | 7.4520168 | 7.0416872 |
| LOC107964790 | uncharacterized LOC107964790 | 0.2162482 | 7.4517979 | 2.7849241 |
| LOC725703 | uncharacterized LOC725703 | 0.1791626 | 7.3656603 | 2.7228607 |
| LOC412059 | F-box only protein 11 | 0.4184543 | 7.3416702 | 5.7574197 |
| LOC107964949 | uncharacterized LOC107964949 | 1.4521117 | 7.2941720 | -0.9463712 |
| LOC408968 | cytochrome c-type heme lyase | 0.1075697 | 7.2302206 | 8.2937298 |
| LOC727650 | uncharacterized LOC727650 | 0.0217284 | 7.1878052 | 5.9093161 |
| LOC410133 | PDZ domain-containing RING finger protein 4 | -0.0029520 | 7.1686910 | 2.5368371 |
| LOC726020 | protein OSCP1 | -0.1644416 | 7.1595168 | 3.8258362 |
| LOC408264 | netrin receptor UNC5C | 0.4416726 | 7.1480991 | 0.1358584 |
| LOC724835 | protein eva-1 | 0.3113614 | 7.1153149 | 3.2335013 |
| LOC551031 | uncharacterized LOC551031 | 0.1747157 | 7.0977562 | 7.2290722 |
| LOC410600 | uncharacterized LOC410600 | -0.1407091 | 7.0230496 | 3.1332867 |
| LOC107964764 | intraflagellar transport protein 22 homolog | 0.0638071 | 7.0044373 | 2.2955202 |
| LOC410819 | uncharacterized LOC410819 | 0.4182864 | 6.9930355 | 3.7328804 |
| LOC107965787 | uncharacterized LOC107965787 | -0.1697746 | 6.9027145 | -0.3308233 |
| LOC724830 | uncharacterized LOC724830 | 0.7813169 | 6.8261333 | -0.2880473 |
| LOC410332 | breast cancer anti-estrogen resistance protein 3 | -0.0422665 | 6.8103194 | 2.9586534 |
| LOC102653912 | uncharacterized LOC102653912 | 2.0100056 | 6.7921854 | -1.0552727 |
| LOC100576746 | uncharacterized LOC100576746 | 0.6816091 | 6.7307513 | -0.1682002 |
| LOC107964324 | uncharacterized LOC107964324 | -0.5432074 | 6.7120520 | -2.2949639 |
| LOC107964992 | rho GDP-dissociation inhibitor 2 | -0.2188728 | 6.6575938 | 7.2503805 |
| LOC408945 | sorting nexin-27 | 0.4700284 | 6.6073592 | 3.6652340 |
| LOC413574 | 26S proteasome non-ATPase regulatory subunit 2-like | -0.0808690 | 6.5904070 | 4.7137430 |
| LOC102656867 | ATP-dependent RNA helicase RhlE-like | 1.0324184 | 6.5630129 | -2.3202638 |
| LOC552769 | ubiA prenyltransferase domain-containing protein 1 homolog | -0.3950438 | 6.5361417 | 8.1454039 |
| LOC102653599 | uncharacterized LOC102653599 | 0.6082713 | 6.4656095 | 12.1438928 |
| LOC552505 | monocarboxylate transporter 9-like | 0.0865160 | 6.4168241 | 4.5971797 |
| LOC725452 | uncharacterized LOC725452 | -0.1676772 | 6.4079680 | 7.6447301 |
| LOC410658 | LIM/homeobox protein Lhx3 | 0.5884243 | 6.3801581 | -1.6395682 |
| LOC724202 | uncharacterized LOC724202 | 1.2840586 | 6.3774346 | -2.1024444 |
| LOC107964315 | uncharacterized LOC107964315 | 0.4389321 | 6.3642859 | 0.8225832 |
| LOC100576912 | cyclic AMP response element-binding protein A | 0.1884909 | 6.3585982 | 1.2710432 |
| LOC551243 | alanine–tRNA ligase, mitochondrial | 0.1028916 | 6.2914536 | 4.2987362 |
| LOC408277 | uncharacterized LOC408277 | 0.5066399 | 6.2108913 | -0.6194759 |
| LOC100577385 | facilitated trehalose transporter Tret1-like | 0.0845474 | 6.1788653 | 2.7449341 |
| LOC107965722 | uncharacterized LOC107965722 | 0.7321089 | 6.0970161 | -0.0442990 |
| LOC102656354 | uncharacterized LOC102656354 | -0.0744638 | 6.0018975 | 6.2863941 |
| LOC725144 | uncharacterized LOC725144 | 0.6575998 | 5.9322159 | 1.7096510 |
| LOC727375 | ankyrin repeat and MYND domain-containing protein 2 | -0.0987473 | 5.9265087 | 7.9379163 |
| LOC726050 | forkhead box protein K2-like | 0.0434946 | 5.8864057 | -0.7479730 |
| LOC726407 | uncharacterized LOC726407 | 0.0003562 | 5.8808610 | 6.7119472 |
| LOC100576236 | uncharacterized LOC100576236 | 0.6685709 | 5.8050095 | 3.8991490 |
| LOC411197 | dynein light chain 1, axonemal-like | -0.5420408 | 5.7918350 | -0.9884322 |
| ACSF2 | acyl-CoA synthetase family member 2 | 0.3727199 | 5.7830708 | 3.0685163 |
| LOC408841 | voltage-dependent calcium channel subunit alpha-2/delta-3 | 0.7407599 | 5.7768165 | 2.8024072 |
| LOC725413 | fibrillin-1-like | 0.5292328 | 5.7660454 | 2.6940001 |
| LOC100577348 | uncharacterized LOC100577348 | 0.9624294 | 5.7657029 | -1.3439401 |
| LOC107964936 | putative protein TPRXL | -0.0414879 | 5.6925811 | 1.4293824 |
| LOC107964314 | uncharacterized LOC107964314 | -0.0212045 | 5.6727873 | 5.0216806 |
| LOC100577023 | tyrosine-protein phosphatase 69D-like | 0.7152794 | 5.6713798 | 1.2524599 |
| LOC410624 | serine proteinase stubble | 1.1081310 | 5.6581889 | -0.6456428 |
| LOC550922 | protein mab-21-like | 0.8587860 | 5.6466237 | -0.4297050 |
| LOC100576882 | uncharacterized LOC100576882 | 0.5079020 | 5.6445474 | 0.7789441 |
| LOC410685 | inactive tyrosine-protein kinase 7-like | 0.7280031 | 5.6155456 | 0.3181047 |
| LOC100576502 | tripartite motif-containing protein 45-like | 0.0361440 | 5.5751475 | 4.1241886 |
| LOC107964899 | uncharacterized LOC107964899 | 0.1538852 | 5.5484646 | 1.9607722 |
| LOC107965444 | uncharacterized LOC107965444 | 2.9796074 | 5.4945517 | -2.0426669 |
| LOC107964999 | uncharacterized LOC107964999 | 0.3089406 | 5.4776945 | 3.4636128 |
| LOC412305 | succinate-semialdehyde dehydrogenase, mitochondrial | -0.1350241 | 5.4250881 | 8.4258131 |
| LOC102655561 | sonic hedgehog protein A-like | 0.4333816 | 5.3932785 | -1.1821750 |
| LOC552017 | alpha-catulin | 0.1976158 | 5.3842423 | 1.5996000 |
| LOC725358 | protein YIPF1 | -0.3452196 | 5.2805772 | 7.1462888 |
| LOC100576136 | zinc finger BED domain-containing protein 1-like | 0.0394145 | 5.2658207 | 1.9745711 |
| LOC408362 | alpha-tocopherol transfer protein | 0.6547248 | 5.2271197 | 2.1084610 |
| LOC725632 | protein MCM10 homolog | 0.0044534 | 5.1741424 | 4.5853903 |
| LOC726472 | prohormone-3 | 0.3182785 | 5.1017557 | 3.2897394 |
| LOC413054 | myeloperoxidase | 0.1274067 | 5.0557135 | 1.9553591 |
| Qbp-1 | Queen brain-selective protein-1 | 0.0582312 | 4.9704439 | 0.3478975 |
| LOC102654078 | uncharacterized LOC102654078 | 0.9277920 | 4.9266264 | -2.1856414 |
| LOC412755 | WD repeat-containing protein 13-like | 0.0188287 | 4.9063700 | 6.4074001 |
| Mir6058 | microRNA 6058 | 0.2732923 | 4.8855209 | -1.0378584 |
| LOC107965429 | uncharacterized LOC107965429 | 0.5170550 | 4.7899112 | 0.0003201 |
| LOC408755 | probable DNA replication complex GINS protein PSF2 | 0.2056945 | 4.7738141 | 5.9857187 |
| LOC724931 | C3 and PZP-like alpha-2-macroglobulin domain-containing protein 8 | -0.0569058 | 4.7532740 | 6.2153720 |
| LOC107964674 | uncharacterized LOC107964674 | 0.4092885 | 4.7356358 | -2.1938686 |
| LOC724737 | trichohyalin-like | 0.2495699 | 4.7314819 | 5.9418690 |
| LOC726948 | suppressor of lurcher protein 1 | 0.9526404 | 4.7280254 | 2.0969528 |
| LOC725970 | protein still life, isoform SIF type 1-like | 0.2282165 | 4.6908517 | 2.7283680 |
| LOC102654521 | uncharacterized LOC102654521 | 0.3404266 | 4.6815075 | 3.1096044 |
| LOC408353 | proteasome subunit beta type-7 | -0.2266489 | 4.5975856 | 8.1429935 |
| LOC107964285 | uncharacterized LOC107964285 | 0.3653615 | 4.5336146 | -1.8182151 |
| LOC726886 | uncharacterized LOC726886 | 1.0437750 | 4.3944540 | 1.1100022 |
| LOC413473 | GTPase-activating Rap/Ran-GAP domain-like protein 3 | 0.3904973 | 4.3897224 | 3.0267521 |
| LOC100577320 | uncharacterized LOC100577320 | 0.1524046 | 4.2692616 | 5.3138710 |
| LOC552671 | cytochrome b-c1 complex subunit 2, mitochondrial | 0.1362211 | 4.2137569 | 9.6694129 |
| LOC724899 | uncharacterized LOC724899 | 0.1920726 | 4.1358410 | 8.6871968 |
| LOC724422 | homeobox protein Hox-B1a | 0.1346780 | 4.0633583 | 2.0126253 |
| LOC408936 | RNA-binding protein squid | -0.0653684 | 4.0033821 | 5.4771233 |
| LOC726124 | segmentation protein Runt-like | 0.2060490 | 3.9965297 | -0.9024702 |
| LOC102656718 | uncharacterized LOC102656718 | 0.8854952 | 3.9897683 | -0.4675288 |
| LOC107965315 | uncharacterized LOC107965315 | 0.6225920 | 3.9204987 | 0.8401343 |
| LOC725149 | GPI ethanolamine phosphate transferase 2 | 0.0711842 | 3.9036566 | 4.1606304 |
| LOC550958 | uncharacterized LOC550958 | 0.5188300 | 3.8768787 | 2.3159851 |
| LOC410341 | RNA pseudouridylate synthase domain-containing protein 2-like | -0.0624698 | 3.8738443 | 4.0049696 |
| LOC412088 | flocculation protein FLO11 | 0.5262093 | 3.8730911 | 0.5480369 |
| LOC408939 | charged multivesicular body protein 5 | -0.1510703 | 3.8420993 | 5.6049125 |
| LOC100578068 | lateral signaling target protein 2 homolog | 0.1061929 | 3.8299642 | 4.6048069 |
| LOC551831 | histone deacetylase complex subunit SAP30 homolog | -0.0238030 | 3.8272060 | 5.6712535 |
| LOC552637 | actin, clone 403-like | 1.0484614 | 3.8214114 | -0.2962644 |
| Obp12 | odorant binding protein 12 | 0.2096009 | 3.8177411 | 2.1831433 |
| LOC102654163 | uncharacterized LOC102654163 | 1.0943062 | 3.8053770 | -0.2943693 |
| LOC552649 | elongation factor 1-beta’ | 0.2976778 | 3.7986590 | 6.1130083 |
| LOC107965758 | uncharacterized LOC107965758 | 2.0306263 | 3.7936235 | -2.4306537 |
| LOC551796 | cationic amino acid transporter 4 | 0.0638439 | 3.7638427 | 4.7857227 |
| LOC107964131 | uncharacterized LOC107964131 | 0.6282843 | 3.7270512 | 0.3908076 |
| LOC552590 | transmembrane protein 120 homolog | -0.2909622 | 3.7196763 | 6.5290509 |
| LOC552836 | uncharacterized LOC552836 | 0.4509839 | 3.6758823 | 0.9272276 |
| LOC408906 | multiple C2 and transmembrane domain-containing protein 1 | 0.1199527 | 3.6494473 | 5.5257675 |
| LOC100578629 | uncharacterized LOC100578629 | -0.2536583 | 3.6467616 | 4.2610292 |
| LOC100576591 | putative uncharacterized protein DDB_G0277255 | 0.7325141 | 3.6309068 | 2.7850394 |
| LOC107965038 | zinc transporter 2-like | 0.2556505 | 3.6059248 | 4.9583830 |
| LOC107964020 | alpha-tocopherol transfer protein-like | 0.3865744 | 3.5850816 | 2.6935951 |
| LOC552183 | phosphatidylinositol transfer protein alpha isoform | -0.1864169 | 3.5773739 | 8.6577147 |
| LOC410006 | uncharacterized LOC410006 | 0.6078486 | 3.5771990 | 1.7053140 |
| LOC100578128 | uncharacterized LOC100578128 | 0.8112054 | 3.5586528 | 0.8172922 |
| LOC724507 | RIB43A-like with coiled-coils protein 1 | 0.4055355 | 3.4768926 | -0.5433904 |
| LOC100576524 | transmembrane protein 94-like | 1.6730918 | 3.4739230 | -0.4806128 |
| LOC100577995 | uncharacterized LOC100577995 | -0.0331113 | 3.4438811 | 5.7514376 |
| Fibroin1 | silk fibroin 1 | -0.3066275 | 3.4365002 | -1.6746240 |
| LOC725577 | uncharacterized LOC725577 | -0.4002962 | 3.4126943 | 6.4327403 |
| LOC410289 | paraplegin | 0.0403556 | 3.3904863 | 8.2386738 |
| LOC724312 | vanin-like protein 1 | 0.3199618 | 3.3606862 | 6.9205392 |
| LOC552052 | zinc finger protein 330 homolog | 0.0220122 | 3.3447160 | 5.8257496 |
| LOC552459 | glycine-rich cell wall structural protein-like | -0.2679987 | 3.3015751 | 7.3002269 |
| LOC413065 | transmembrane protein 164 | -0.0233882 | 3.2816262 | 5.1706985 |
| LOC726322 | uncharacterized LOC726322 | 0.2948435 | 3.2050054 | 2.4041483 |
| LOC102655006 | cyclopropane-fatty-acyl-phospholipid synthase-like | 0.9699444 | 3.1989926 | -1.8406034 |
| LOC408531 | PRADC1-like protein | -0.3038170 | 3.1708290 | 6.7639208 |
| LOC410517 | uncharacterized LOC410517 | -0.0419630 | 3.1270841 | 5.7453688 |
| LOC726987 | uncharacterized LOC726987 | 0.6262276 | 3.1157264 | 3.9128326 |
| LOC409001 | disheveled-associated activator of morphogenesis 1 | 0.1245285 | 3.0731884 | 3.6053871 |
| Mir980 | microRNA 980 | 1.2583597 | 3.0640288 | -1.9354257 |
| LOC102656573 | uncharacterized LOC102656573 | 1.1211446 | 3.0511472 | -1.3186257 |
| LOC102653914 | uncharacterized LOC102653914 | 2.1568864 | 3.0378980 | -2.2614029 |
| LOC409201 | acyl-protein thioesterase 1 | -0.2645858 | 3.0048486 | 7.0632786 |
| LOC551890 | probable serine incorporator | -0.2739736 | 2.9993741 | 8.5798043 |
| LOC100576935 | uncharacterized LOC100576935 | 0.6301546 | 2.9821728 | -0.6602137 |
| LOC107964004 | uncharacterized LOC107964004 | 0.6484780 | 2.9693103 | -0.1989507 |
| LOC726028 | probable rRNA-processing protein EBP2 homolog | -0.0380340 | 2.9491157 | 4.5763613 |
| LOC725799 | uncharacterized LOC725799 | 0.6953146 | 2.8950269 | 1.3545694 |
| LOC726495 | protein D2-like | 0.4129045 | 2.8942177 | 5.2354940 |
| LOC411857 | charged multivesicular body protein 4b | -0.1549755 | 2.8788518 | 8.1152633 |
| LOC727546 | uncharacterized LOC727546 | 0.3364163 | 2.8760792 | -1.7323231 |
| LOC107965164 | uncharacterized LOC107965164 | 0.4356495 | 2.8555316 | -0.5731240 |
| LOC726225 | aldose 1-epimerase-like | 0.4736466 | 2.8450051 | 3.4074858 |
| LOC552276 | uncharacterized LOC552276 | -0.1674643 | 2.7881044 | 1.2420892 |
| LOC409056 | sodium-dependent phosphate transporter 2 | -0.0037562 | 2.7807461 | 2.2088022 |
| LOC100577377 | uncharacterized LOC100577377 | 0.3137785 | 2.7739227 | 0.0438048 |
| LOC408725 | protein sickie-like | 0.5456826 | 2.7652738 | -0.7267872 |
| LOC410037 | dnaJ homolog subfamily C member 7 | 0.0136422 | 2.7523007 | 6.6161330 |
| LOC408386 | eukaryotic translation initiation factor 3 subunit G | -0.2129080 | 2.7133035 | 7.4224672 |
| LOC107964177 | uncharacterized LOC107964177 | -0.0648312 | 2.6474861 | 1.8672531 |
| LOC552038 | synaptosomal-associated protein 29 | -0.4579741 | 2.6250798 | 5.5240236 |
| LOC552520 | AP-3 complex subunit mu-1 | -0.3712673 | 2.6215054 | 6.8007361 |
| LOC409966 | dexamethasone-induced Ras-related protein 1 | 0.3379926 | 2.5761965 | 0.9943765 |
| LOC102656820 | uncharacterized LOC102656820 | 0.8469420 | 2.5461285 | -1.9877619 |
| LOC102655698 | uncharacterized LOC102655698 | 2.0084339 | 2.4848101 | -1.7860302 |
| LOC408732 | uncharacterized LOC408732 | 0.0237851 | 2.4739423 | 0.9547715 |
| LOC100577748 | uncharacterized LOC100577748 | -0.2888027 | 2.4348279 | 2.4447819 |
| LOC408544 | lysyl oxidase homolog 4 | 0.0273261 | 2.4076999 | -0.0182900 |
| LOC102656799 | uncharacterized LOC102656799 | 0.7350069 | 2.3561586 | -1.7887219 |
| LOC102656558 | uncharacterized LOC102656558 | 0.1079604 | 2.3381774 | 1.2529151 |
| LOC100577906 | uncharacterized LOC100577906 | 1.3058529 | 2.2651108 | 0.4079342 |
| LOC107965602 | uncharacterized LOC107965602 | 0.0323204 | 2.2520559 | 1.7156314 |
| LOC409198 | 26S protease regulatory subunit 6A-B | -0.0777869 | 2.2455836 | 7.9566306 |
| LOC726842 | optomotor-blind protein-like | 0.2061048 | 2.2452671 | -1.3139117 |
| LOC410678 | mitochondrial ribosomal protein S11 | -0.0573700 | 2.2317809 | 6.1768450 |
| LOC100578101 | uncharacterized LOC100578101 | 0.1887385 | 2.2272090 | 4.9973176 |
| LOC552136 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | 1.2592447 | 2.1915370 | -0.5034051 |
| Mir6060 | microRNA 6060 | 0.3306785 | 2.1758674 | -1.3171190 |
| LOC409366 | integral membrane protein 2C | -0.3592208 | 2.1647936 | 8.6010584 |
| LOC412764 | MFS-type transporter SLC18B1-like | 0.7931143 | 2.1217720 | 2.5045528 |
| LOC107965281 | ADP-ribosylation factor 6 | -0.1371774 | 2.0892661 | 6.6195446 |
| LOC102656610 | uncharacterized LOC102656610 | 0.1149387 | 2.0432413 | 1.6343154 |
| LOC412889 | branched-chain-amino-acid aminotransferase, cytosolic-like | -0.0689650 | 2.0430213 | 8.0411122 |
| LOC551968 | aldose reductase-like | -0.2836104 | 2.0047856 | 11.0227600 |
| LOC410190 | tyrosine-protein kinase Dnt | 0.9780017 | 1.9953657 | -0.1628527 |
| LOC413495 | mediator of RNA polymerase II transcription subunit 27 | -0.0018542 | 1.9714198 | 4.6773848 |
| LOC100576080 | uncharacterized LOC100576080 | 1.3577094 | 1.9688298 | -1.4232428 |
| LOC410969 | ras-related protein Rab-9A | 0.0070368 | 1.9548622 | 5.7464544 |
| LOC102653766 | tRNA dimethylallyltransferase-like | 1.4482933 | 1.9401759 | -2.4857860 |
| LOC552290 | serine/threonine-protein phosphatase 4 catalytic subunit | -0.2195734 | 1.9245697 | 7.0057663 |
| LOC551505 | ER membrane protein complex subunit 3 | -0.3982600 | 1.9181617 | 6.8454824 |
| LOC102655359 | partner of Y14 and mago | 0.1316924 | 1.9168433 | 4.6548462 |
| LOC100577150 | uncharacterized LOC100577150 | 0.2704833 | 1.9057809 | 0.4184943 |
| LOC410216 | reticulocalbin-2 | -0.0766814 | 1.8870828 | 7.1360841 |
| LOC726546 | gem-associated protein 7-like | -0.1161073 | 1.8863317 | 3.7561364 |
| LOC107965409 | uncharacterized LOC107965409 | 1.6959910 | 1.8622506 | -2.1067742 |
| LOC107966002 | uncharacterized LOC107966002 | 0.4529908 | 1.8549604 | -1.2987077 |
| LOC725625 | uncharacterized LOC725625 | 0.4079783 | 1.8395997 | 0.4881536 |
| osp | outspread | -0.0879562 | 1.8101662 | 4.2882961 |
| LOC107964833 | uncharacterized LOC107964833 | 0.1838304 | 1.7956768 | -0.4938790 |
| LOC102656927 | uncharacterized LOC102656927 | -0.5951055 | 1.7352877 | -0.7683185 |
| LOC408645 | glutamate receptor, ionotropic, kainate 2 | 0.3210007 | 1.7170370 | 2.7850896 |
| LOC102654084 | tetraspanin-3-like | 0.4813122 | 1.6802031 | 3.7269873 |
| LOC107964277 | uncharacterized LOC107964277 | 1.1035452 | 1.6516191 | -1.9945650 |
| LOC107965635 | uncharacterized LOC107965635 | 0.4620326 | 1.6462399 | -0.7619533 |
| LOC107965194 | uncharacterized LOC107965194 | -0.1103535 | 1.6068014 | -0.2112986 |
| LOC552067 | uncharacterized LOC552067 | -0.1649520 | 1.6035331 | 5.7526955 |
| LOC408908 | anoctamin-8 | 0.1866802 | 1.5811600 | 2.6898187 |
| LOC725789 | ragulator complex protein LAMTOR1 | -0.2007683 | 1.5606289 | 6.5704677 |
| LOC100577896 | heat shock factor 2-binding protein-like | 0.3849053 | 1.5545986 | -0.5245801 |
| LOC100578609 | uncharacterized LOC100578609 | 0.1793245 | 1.5455948 | -1.8397796 |
| LOC107965666 | uncharacterized LOC107965666 | 0.5267988 | 1.5441865 | -1.8140983 |
| LOC726409 | peptidyl-prolyl cis-trans isomerase H | -0.1065288 | 1.5437443 | 3.5497693 |
| Mir3726 | microRNA 3726 | 0.1168569 | 1.5304939 | -1.7680796 |
| LOC102655547 | uncharacterized LOC102655547 | 0.0675736 | 1.5229862 | -0.0359920 |
| LOC408516 | protein D2-like | -0.0425439 | 1.4809930 | 10.0660162 |
| LOC727338 | sarcospan-like | 1.4690031 | 1.4689909 | -1.1280618 |
| LOC102655088 | uncharacterized LOC102655088 | 0.2195945 | 1.4462940 | 2.2480621 |
| LOC413623 | kelch-like protein diablo | 0.1505293 | 1.4329324 | 0.7094757 |
| LOC410718 | uncharacterized LOC410718 | 0.0912024 | 1.4229583 | 3.4196289 |
| LOC107965116 | uncharacterized LOC107965116 | -0.0626938 | 1.4033385 | 2.6998301 |
| LOC102653850 | uncharacterized LOC102653850 | 0.4559130 | 1.3923760 | -1.1295594 |
| LOC409176 | pro-resilin | -0.4144081 | 1.3685510 | -2.2256813 |
| LOC102654201 | uncharacterized LOC102654201 | 1.1069141 | 1.3574563 | -0.9722450 |
| LOC107965502 | uncharacterized LOC107965502 | -0.0612725 | 1.3416873 | 0.0370535 |
| LOC410486 | 40S ribosomal protein SA | -0.1178761 | 1.3145948 | 9.9540762 |
| LOC100578292 | histone-lysine N-methyltransferase SETMAR-like | 0.3368561 | 1.2890546 | 3.5782795 |
| LCCH3 | ligand-gated chloride channel homolog 3 | 0.4001890 | 1.2762438 | -1.1666482 |
| LOC726922 | acyl-CoA-binding domain-containing protein 4 | -0.2794057 | 1.2567200 | 6.9163243 |
| LOC412016 | transforming growth factor beta regulator 1 | -0.2583502 | 1.2509637 | 4.8058401 |
| Vamp7 | vesicle-associated membrane protein 7 | -0.3367216 | 1.2297287 | 6.3480307 |
| LOC409295 | mitochondrial ubiquitin ligase activator of nfkb 1 | -0.2645012 | 1.2248413 | 7.6470586 |
| LOC413423 | hemicentin-2 | 0.6318292 | 1.2221208 | -0.9776038 |
| LOC724197 | uncharacterized LOC724197 | 1.2394007 | 1.2077874 | -1.3911934 |
| LOC726648 | fas apoptotic inhibitory molecule 1 | -0.1064886 | 1.1602375 | 0.7537502 |
| LOC107964197 | uncharacterized LOC107964197 | 0.0774852 | 1.1585081 | 0.8751657 |
| LOC408741 | ras-related protein Rab-37 | 0.4345517 | 1.1410835 | 3.1045592 |
| LOC102656494 | uncharacterized LOC102656494 | 1.3636201 | 1.1350399 | -2.1618935 |
| LOC107964773 | uncharacterized LOC107964773 | -0.2458431 | 1.1163665 | 0.4221530 |
| Mir3721 | microRNA 3721 | 0.0745730 | 1.1154442 | -2.4908737 |
| LOC551621 | leucine rich repeat G protein coupled receptor | -0.0079808 | 1.0960486 | -0.2191593 |
| LOC107964528 | uncharacterized LOC107964528 | -0.1688990 | 1.0831012 | 3.0797422 |
| LOC107965634 | uncharacterized LOC107965634 | 3.2434560 | 1.0720439 | -2.2306041 |
| LOC413429 | acid phosphatase type 7 | -0.2799652 | 1.0496274 | 8.8572591 |
| LOC413995 | sensory neuron membrane protein 1 | 0.4562581 | 1.0414111 | 3.9954921 |
| LOC552199 | venom carboxylesterase-6-like | 1.1874316 | 1.0362291 | 0.7510326 |
| LOC100578988 | zinc finger MYND domain-containing protein 10 homolog | 1.6438777 | 1.0345959 | -0.5853673 |
| LOC406146 | hyaluronoglucosaminidase | 0.3414606 | 1.0210175 | 3.8789690 |
| LOC409602 | circadian clock-controlled protein-like | 0.3055030 | 1.0141655 | 9.5098322 |
| LOC102655457 | uncharacterized LOC102655457 | -0.0387902 | 1.0055018 | -1.7153873 |
| LOC411261 | molybdenum cofactor sulfurase 1 | -0.1939543 | 0.9760482 | 5.2139788 |
| LOC552217 | uncharacterized LOC552217 | 0.6789158 | 0.9545579 | 3.3817072 |
| LOC102656363 | anaerobic ribonucleoside-triphosphate reductase-activating protein-like | 0.8520107 | 0.9270635 | -1.7098513 |
| LOC107965235 | phosphatidylinositol 4-phosphate 5-kinase 7-like | -0.2295160 | 0.9265912 | 0.0196742 |
| LOC100578227 | uncharacterized LOC100578227 | 0.2412889 | 0.8913658 | 0.4698885 |
| LOC100578540 | coiled-coil-helix-coiled-coil-helix domain-containing protein 2-like | 0.2549549 | 0.8844530 | -0.0010207 |
| LOC107964682 | uncharacterized LOC107964682 | 0.6737784 | 0.8681759 | -1.7860914 |
| LOC107964434 | uncharacterized LOC107964434 | 1.4546821 | 0.8606209 | -2.1505349 |
| LOC408868 | inositol monophosphatase 2-like | -0.3566651 | 0.8557178 | 5.9744682 |
| LOC551029 | inhibitor of growth protein 5 | -0.3530661 | 0.8479183 | 4.2139591 |
| LOC107964267 | uncharacterized LOC107964267 | -0.0460196 | 0.8241869 | 1.5754325 |
| LOC414011 | mitochondrial glutamate carrier 1-like | -0.2647533 | 0.8194617 | 5.6786680 |
| LOC724388 | solute carrier family 35 member G1-like | 0.0900048 | 0.7677986 | 1.0927060 |
| LOC102655358 | uncharacterized LOC102655358 | 0.2627190 | 0.7514488 | 0.9654421 |
| LOC726350 | putative ATP-dependent RNA helicase DHX33 | 0.2450993 | 0.7014188 | 0.2425760 |
| LOC100576281 | uncharacterized LOC100576281 | 0.0570402 | 0.6782819 | 2.2318992 |
| LOC107965520 | uncharacterized LOC107965520 | 1.0283722 | 0.6669014 | -1.1287196 |
| LOC102653661 | uncharacterized LOC102653661 | 1.0301545 | 0.6647608 | -2.1593576 |
| LOC551628 | protein borderless | 0.2492449 | 0.6543551 | 1.5318986 |
| LOC409578 | adapter molecule Crk | -0.3360800 | 0.6441507 | 6.1985494 |
| LOC410245 | urokinase-type plasminogen activator | 0.4895984 | 0.6424194 | 1.1843115 |
| LOC410612 | solute carrier family 25 member 44 | -0.2965698 | 0.6399350 | 7.8778234 |
| LOC102654905 | uncharacterized LOC102654905 | 0.4262491 | 0.6185347 | 0.6347838 |
| LOC724768 | uncharacterized LOC724768 | -0.6343115 | 0.6128344 | 7.1222310 |
| LOC412635 | fukutin-related protein | -0.2431492 | 0.5964966 | 2.8159009 |
| LOC552023 | guanylate kinase | -0.2156250 | 0.5946329 | 5.7123147 |
| LOC100577003 | uncharacterized LOC100577003 | -0.2736905 | 0.5910698 | 4.6781347 |
| LOC102654570 | uncharacterized LOC102654570 | -0.0629823 | 0.5809828 | 3.1637329 |
| LOC100577298 | branched-chain-amino-acid aminotransferase, cytosolic-like | 0.1826553 | 0.5481066 | 7.7148148 |
| LOC107965086 | uncharacterized LOC107965086 | -0.0809681 | 0.5354217 | -0.3782826 |
| LOC102655968 | uncharacterized LOC102655968 | 0.2621128 | 0.5279360 | 1.4035652 |
| LOC102656332 | uncharacterized LOC102656332 | 0.1745121 | 0.5172386 | 2.9092479 |
| LOC410747 | glucose dehydrogenase [FAD, quinone] | 0.0583390 | 0.5013487 | 2.6801745 |
| LOC409333 | CAAX prenyl protease 2 | -0.3346019 | 0.4983195 | 5.7000462 |
| LOC102655840 | uncharacterized LOC102655840 | -0.4113773 | 0.4870562 | -0.1669327 |
| LOC102653684 | uncharacterized LOC102653684 | 0.1089145 | 0.4857155 | -1.0080887 |
| LOC727334 | selenium-binding protein 1-like | -0.3533757 | 0.4753935 | -0.0387155 |
| LOC102655461 | uncharacterized LOC102655461 | 0.0029843 | 0.4689785 | 1.0450915 |
| LOC551448 | ribose-phosphate pyrophosphokinase 1 | 0.3274367 | 0.4682081 | 8.2008788 |
| LOC107964641 | uncharacterized LOC107964641 | 0.3043412 | 0.4671807 | -0.0617361 |
| LOC102655731 | uncharacterized LOC102655731 | 0.5655458 | 0.4636732 | -0.2684455 |
| LOC102656221 | uncharacterized LOC102656221 | 0.3072756 | 0.4321009 | -1.8789298 |
| LOC411294 | dopamine N-acetyltransferase-like | -0.0432786 | 0.4104946 | 1.6072792 |
| LOC102656676 | uncharacterized LOC102656676 | -0.1689001 | 0.4081349 | -2.0271161 |
| LOC411320 | serine/threonine/tyrosine-interacting protein-like | -0.1299073 | 0.3898023 | 3.8581272 |
| LOC107965724 | uncharacterized LOC107965724 | 0.8279308 | 0.3870658 | -0.8134518 |
| LOC725645 | uncharacterized LOC725645 | -0.1777178 | 0.3832409 | 3.8502527 |
| LOC100577537 | uncharacterized LOC100577537 | 0.4680308 | 0.3497472 | -0.0341730 |
| LOC551717 | putative uncharacterized protein DDB_G0287265 | 0.2596479 | 0.3477636 | 1.4102104 |
| LOC100577515 | uncharacterized LOC100577515 | 0.7013128 | 0.3465809 | 0.1435623 |
| LOC107965439 | uncharacterized LOC107965439 | -0.1271484 | 0.3378209 | -1.4700291 |
| LOC409678 | ankycorbin | -0.0448357 | 0.3149795 | -0.9929875 |
| LOC725101 | uncharacterized LOC725101 | -0.1829779 | 0.3045904 | 4.4053691 |
| LOC107964935 | uncharacterized LOC107964935 | 1.1588980 | 0.2991824 | -2.2940334 |
| LOC107964035 | uncharacterized LOC107964035 | -0.2012962 | 0.2847155 | 5.0917317 |
| LOC413060 | DNA-binding protein D-ETS-4 | -0.2556470 | 0.2840921 | 1.1424028 |
| LOC102656545 | uncharacterized protein CG3556-like | -0.5034955 | 0.2840002 | -0.5349110 |
| LOC552667 | protein charybde-like | -0.3777842 | 0.2713383 | 6.3032006 |
| LOC724270 | crustacean hyperglycemic hormones | 0.1898940 | 0.2676564 | 0.8040706 |
| LOC100578072 | uncharacterized LOC100578072 | -0.0799849 | 0.2535456 | 0.8137362 |
| LOC551257 | microtubule-associated protein Jupiter | -0.0560662 | 0.2532236 | 6.2794271 |
| LOC102656114 | uncharacterized LOC102656114 | -0.0265407 | 0.2523775 | -0.8067745 |
| LOC551537 | enoyl-CoA hydratase domain-containing protein 3, mitochondrial | 0.0012162 | 0.2215843 | 5.0420284 |
| LOC409329 | mannose-1-phosphate guanyltransferase beta | -0.2094178 | 0.2206710 | 9.0494660 |
| LOC107965129 | uncharacterized LOC107965129 | 0.4471051 | 0.1905988 | -2.1252978 |
| LOC408364 | uncharacterized LOC408364 | -0.4563964 | 0.1425348 | -1.1715150 |
| LOC100576599 | uncharacterized LOC100576599 | -0.2337320 | 0.1359526 | 1.3488371 |
| LOC107964757 | uncharacterized LOC107964757 | -0.0688982 | 0.1345795 | 0.5349444 |
| LOC107965330 | uncharacterized LOC107965330 | -0.0583657 | 0.1269011 | -0.8461105 |
| LOC102656479 | uncharacterized LOC102656479 | 1.2989700 | 0.1258375 | -1.8025064 |
| LOC102655431 | uncharacterized LOC102655431 | 0.2624774 | 0.1134013 | 2.3794269 |
(mmtest <- with(connectivityDsxModule, cor.test(logFC, kWithin, method = "s")))
## Warning in cor.test.default(logFC, kWithin, method = "s"): Cannot compute
## exact p-value with ties
##
## Spearman's rank correlation rho
##
## data: logFC and kWithin
## S = 95677000, p-value < 2.2e-16
## alternative hypothesis: true rho is not equal to 0
## sample estimates:
## rho
## 0.3651401
interestingGenes <- c("Dsx", "Vg")
ggplot(connectivityDsxModule, aes(logFC, kWithin))+geom_hex(show.legend=F) +geom_point(data=subset(connectivityDsxModule, gene_id %in% interestingGenes), colour="red")+theme_bw()+geom_text(data=subset(connectivityDsxModule, gene_id %in% interestingGenes), aes(label = gene_id, color="#fff", size=16), nudge_x=-.25)+guides(color=F, size=F)+xlab("Log2 fold-count (control/treatment)")+ylab("Moudle membership")+annotate(geom="text", x=2, y=78, size = 8, label = paste("rho ==", round(mmtest$estimate,2)),parse = TRUE,hjust = 0)+annotate(geom="text", x=2, y=70, size = 8, label = paste("p ==", scientific(mmtest$p.value)),parse=T,hjust = 0)+theme(axis.title = element_text(size=14, face = "bold"))
#ggsave("Dsx module.pdf", width = 5, height = 5)
Hover over the points to reveal gene names. There is a significant correlation between connectivity within this module and log-fold change as a result of RNAi treatment. In other words, this is a Dsx-responsive module.
go <- read_tsv("data/go.tsv", col_types = cols()) %>% mutate(evidence = "ISS") %>% dplyr::select(GO=go, evidence,gene=gene_id)
universe <- unique(go$gene)
goFrame <- GOFrame(as.data.frame(go %>% dplyr::filter(gene %in% universe)), organism="Apis melliefera")
## Loading required package: RSQLite
## Loading required package: GO.db
goAllFrame <- GOAllFrame(goFrame)
gsc <- GeneSetCollection(goAllFrame, setType = GOCollection())
DsxModuleGo <- hyperGTest(GSEAGOHyperGParams(name = "enriched in Dsx module",
geneSetCollection=gsc,geneIds = intersect(dsxModuleGenes$gene,universe), universeGeneIds=universe, ontology = "BP",pvalueCutoff = 0.05,conditional = FALSE,testDirection = "over"))
Virtually all the GO terms enriched in the Dsx-responsive module have to do with regulation, and it is full of transcription factors and other regulatory genes. This is expected, given that Dsx is a master regulatory gene.
summary(DsxModuleGo) %>% kable("html", digits = 3) %>% kable_styling() %>% kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"), full_width = T) %>% scroll_box(height = "400px")
| GOBPID | Pvalue | OddsRatio | ExpCount | Count | Size | Term |
|---|---|---|---|---|---|---|
| GO:0050789 | 0.000 | 2.271 | 50.719 | 83 | 683 | regulation of biological process |
| GO:0050794 | 0.000 | 2.267 | 49.234 | 81 | 663 | regulation of cellular process |
| GO:0065007 | 0.000 | 2.223 | 53.021 | 85 | 714 | biological regulation |
| GO:1903506 | 0.000 | 2.482 | 14.035 | 29 | 189 | regulation of nucleic acid-templated transcription |
| GO:2001141 | 0.000 | 2.482 | 14.035 | 29 | 189 | regulation of RNA biosynthetic process |
| GO:0006355 | 0.000 | 2.482 | 14.035 | 29 | 189 | regulation of transcription, DNA-templated |
| GO:0051252 | 0.000 | 2.466 | 14.109 | 29 | 190 | regulation of RNA metabolic process |
| GO:0019219 | 0.000 | 2.402 | 14.406 | 29 | 194 | regulation of nucleobase-containing compound metabolic process |
| GO:0080090 | 0.000 | 2.279 | 16.708 | 32 | 225 | regulation of primary metabolic process |
| GO:0010556 | 0.000 | 2.318 | 15.372 | 30 | 207 | regulation of macromolecule biosynthetic process |
| GO:0031326 | 0.000 | 2.318 | 15.372 | 30 | 207 | regulation of cellular biosynthetic process |
| GO:2000112 | 0.000 | 2.318 | 15.372 | 30 | 207 | regulation of cellular macromolecule biosynthetic process |
| GO:0009889 | 0.000 | 2.318 | 15.372 | 30 | 207 | regulation of biosynthetic process |
| GO:0051171 | 0.000 | 2.276 | 15.594 | 30 | 210 | regulation of nitrogen compound metabolic process |
| GO:0023052 | 0.000 | 1.946 | 26.808 | 44 | 361 | signaling |
| GO:0031323 | 0.000 | 2.170 | 16.783 | 31 | 226 | regulation of cellular metabolic process |
| GO:0060255 | 0.000 | 2.134 | 17.599 | 32 | 237 | regulation of macromolecule metabolic process |
| GO:0010468 | 0.001 | 2.159 | 16.263 | 30 | 219 | regulation of gene expression |
| GO:0044700 | 0.001 | 1.910 | 26.511 | 43 | 357 | single organism signaling |
| GO:0007154 | 0.001 | 1.903 | 26.585 | 43 | 358 | cell communication |
| GO:0019222 | 0.001 | 2.068 | 18.045 | 32 | 243 | regulation of metabolic process |
| GO:0007165 | 0.001 | 1.831 | 25.991 | 41 | 350 | signal transduction |
| GO:0007050 | 0.002 | 37.974 | 0.297 | 3 | 4 | cell cycle arrest |
| GO:0007155 | 0.002 | 3.405 | 3.564 | 10 | 48 | cell adhesion |
| GO:0022610 | 0.002 | 3.405 | 3.564 | 10 | 48 | biological adhesion |
| GO:0050896 | 0.003 | 1.646 | 35.793 | 51 | 482 | response to stimulus |
| GO:0009081 | 0.005 | Inf | 0.149 | 2 | 2 | branched-chain amino acid metabolic process |
| GO:0009082 | 0.005 | Inf | 0.149 | 2 | 2 | branched-chain amino acid biosynthetic process |
| GO:0016337 | 0.005 | Inf | 0.149 | 2 | 2 | single organismal cell-cell adhesion |
| GO:0098602 | 0.005 | Inf | 0.149 | 2 | 2 | single organism cell adhesion |
| GO:0098609 | 0.006 | 5.306 | 1.262 | 5 | 17 | cell-cell adhesion |
| GO:0097659 | 0.006 | 1.713 | 22.352 | 34 | 301 | nucleic acid-templated transcription |
| GO:0006351 | 0.006 | 1.713 | 22.352 | 34 | 301 | transcription, DNA-templated |
| GO:0032774 | 0.007 | 1.706 | 22.426 | 34 | 302 | RNA biosynthetic process |
| GO:0051716 | 0.009 | 1.577 | 32.229 | 45 | 434 | cellular response to stimulus |
| GO:0035556 | 0.010 | 1.822 | 14.703 | 24 | 198 | intracellular signal transduction |
| GO:0043543 | 0.011 | 9.482 | 0.520 | 3 | 7 | protein acylation |
| GO:0007264 | 0.014 | 2.001 | 8.911 | 16 | 120 | small GTPase mediated signal transduction |
| GO:0045216 | 0.016 | 25.183 | 0.223 | 2 | 3 | cell-cell junction organization |
| GO:0034329 | 0.016 | 25.183 | 0.223 | 2 | 3 | cell junction assembly |
| GO:0034330 | 0.016 | 25.183 | 0.223 | 2 | 3 | cell junction organization |
| GO:0008285 | 0.016 | 25.183 | 0.223 | 2 | 3 | negative regulation of cell proliferation |
| GO:0045595 | 0.016 | 25.183 | 0.223 | 2 | 3 | regulation of cell differentiation |
| GO:0002520 | 0.016 | 25.183 | 0.223 | 2 | 3 | immune system development |
| GO:0048534 | 0.016 | 25.183 | 0.223 | 2 | 3 | hematopoietic or lymphoid organ development |
| GO:0030097 | 0.016 | 25.183 | 0.223 | 2 | 3 | hemopoiesis |
| GO:0050793 | 0.017 | 7.582 | 0.594 | 3 | 8 | regulation of developmental process |
| GO:0048513 | 0.017 | 7.582 | 0.594 | 3 | 8 | animal organ development |
| GO:0048731 | 0.021 | 4.608 | 1.114 | 4 | 15 | system development |
| GO:0032501 | 0.023 | 2.089 | 6.386 | 12 | 86 | multicellular organismal process |
| GO:0042981 | 0.024 | 6.316 | 0.668 | 3 | 9 | regulation of apoptotic process |
| GO:0043067 | 0.024 | 6.316 | 0.668 | 3 | 9 | regulation of programmed cell death |
| GO:0051239 | 0.024 | 6.316 | 0.668 | 3 | 9 | regulation of multicellular organismal process |
| GO:0010941 | 0.024 | 6.316 | 0.668 | 3 | 9 | regulation of cell death |
| GO:0009966 | 0.025 | 2.353 | 4.307 | 9 | 58 | regulation of signal transduction |
| GO:0048523 | 0.029 | 2.626 | 3.045 | 7 | 41 | negative regulation of cellular process |
| GO:0001505 | 0.030 | 12.586 | 0.297 | 2 | 4 | regulation of neurotransmitter levels |
| GO:0008283 | 0.030 | 12.586 | 0.297 | 2 | 4 | cell proliferation |
| GO:0042127 | 0.030 | 12.586 | 0.297 | 2 | 4 | regulation of cell proliferation |
| GO:0048518 | 0.032 | 2.376 | 3.787 | 8 | 51 | positive regulation of biological process |
| GO:0016569 | 0.033 | 3.896 | 1.262 | 4 | 17 | covalent chromatin modification |
| GO:0016570 | 0.033 | 3.896 | 1.262 | 4 | 17 | histone modification |
| GO:0010646 | 0.034 | 2.214 | 4.530 | 9 | 61 | regulation of cell communication |
| GO:0023051 | 0.037 | 2.172 | 4.604 | 9 | 62 | regulation of signaling |
| GO:0048583 | 0.037 | 2.172 | 4.604 | 9 | 62 | regulation of response to stimulus |
| GO:1902531 | 0.041 | 2.410 | 3.267 | 7 | 44 | regulation of intracellular signal transduction |
| GO:0045786 | 0.043 | 4.733 | 0.817 | 3 | 11 | negative regulation of cell cycle |
| GO:0006325 | 0.046 | 2.541 | 2.673 | 6 | 36 | chromatin organization |
| GO:2000026 | 0.047 | 8.387 | 0.371 | 2 | 5 | regulation of multicellular organismal development |
| GO:0016573 | 0.047 | 8.387 | 0.371 | 2 | 5 | histone acetylation |
| GO:0006836 | 0.047 | 8.387 | 0.371 | 2 | 5 | neurotransmitter transport |
maxTopGenes <- 30
DsxConnections <- data.frame(cor = cor(expDat[,net$colors == DsxModule], expDat[, "Dsx"]), annot = descriptions$description[match(colnames(expDat[,net$colors == DsxModule]), descriptions$gene_id)])
topGenes <- rownames(DsxConnections)[order(DsxConnections$cor, decreasing = T)[1:maxTopGenes]]
ADJ <- abs(cor(expDat, use="p"))^SoftPower
TOM <- TOMsimilarity(ADJ)
modTOM <- TOM[net$colors == DsxModule, net$colors == DsxModule]
dimnames(modTOM) = list(DsxModuleGenes, DsxModuleGenes)
saveRDS(modTOM, "data/modTOM.rds")
This network shows the 30 genes most highly connected to _Dsx, with edge weights proportional to the strength of the connection, and node areas to log counts per million.
This is a well-replicated data set on early development across castes. They did not find dsx differential expression when they looked at their data.
heCounts <- read_csv("data/he_genes_counts.csv.gz", col_types = cols()) %>% filter(! grepl("ERCC", gene_id))
heTPM <- read_csv("data/he_tpm.csv.gz", col_types = cols()) %>% filter(! grepl("ERCC", gene_id))
heFactors <- read_tsv("data/he_factors.tsv", col_types = cols()) %>% filter(sex == "female")
design <- model.matrix(~caste, heFactors)
cdsHe <- DGEList( heCounts[, heFactors$sample] , group = heFactors$caste)
cdsHe <- calcNormFactors( cdsHe)
mdsPlot <- plotMDS( cdsHe, labels = paste(heFactors$caste, "_", heFactors$age))
cdsHe <- estimateDisp( cdsHe, design)
deHe.tgw <- exactTest( cdsHe , pair = c( "worker" , "queen" ) )
deHe.tgw$table$gene_id <- heCounts$gene_id
deHe.tgw$table <- left_join(deHe.tgw$table, descriptions, by = "gene_id")
The MDS plot is really nice, you can see how the castes start slighly different and then become progressively more so. As reported by He et al. there is no differential expression in the
# positive logFC means upregulated in the worker
deHe.tgw$table %>% filter(gene_id == "Dsx")
## logFC logCPM PValue gene_id description
## 1 0.2005047 3.891214 0.429015 Dsx doublesex
deHe.tgw$table %>% filter(gene_id == "Vg")
## logFC logCPM PValue gene_id description
## 1 -7.215409 6.098228 2.545601e-32 Vg vitellogenin
deHe.tgw$table %>% filter(gene_id == "Mrjp1")
## logFC logCPM PValue gene_id description
## 1 1.447952 -0.4825816 0.00999238 Mrjp1 major royal jelly protein 1
deHe.tgw$table %>% filter(gene_id == "Dnmt3")
## logFC logCPM PValue gene_id description
## 1 0.4447158 4.585787 0.00989903 Dnmt3 DNA methyltransferase 3
data.frame(tpm = t(as.vector(heTPM %>% dplyr::filter(gene_id == "Mrjp1") %>% dplyr::select(heFactors$sample))), caste = heFactors$caste) %>% ggplot(aes(caste,tpm))+geom_boxplot()+ggtitle("Mrjp1")
data.frame(tpm = t(as.vector(heTPM %>% dplyr::filter(gene_id == "Vg") %>% dplyr::select(heFactors$sample))), caste = heFactors$caste) %>% ggplot(aes(caste,tpm))+geom_boxplot()+ggtitle("Vg")
dsxIsoforms <- tibble(isoform_id = c("NM_001111255.1", "NM_001134935.1", "NM_001134936.1", "NR_024131.1" ,"XM_006560013.2"), description = c("M", "F2", "B", "RNA", "X1"))
heIsoforms <- read_csv("data/he_isoforms_counts.csv.gz", col_types = cols()) %>% filter(! grepl("ERCC", isoform_id))
heCdsIso <- DGEList( heIsoforms[, heFactors$sample], group = heFactors$caste)
heCdsIso <- calcNormFactors( heCdsIso)
heCdsIso <- estimateDisp( heCdsIso, design)
heCdsIso.tgw <- exactTest( heCdsIso , pair = c( "worker" , "queen" ) )
heCdsIso.tgw$table$isoform_id <- heIsoforms$isoform_id
kable(heCdsIso.tgw$table %>% filter(isoform_id %in% dsxIsoforms$isoform_id) %>% left_join(dsxIsoforms, by = "isoform_id"))
| logFC | logCPM | PValue iso | form_id des | cription |
|---|---|---|---|---|
| -0.0263521 | 1.1356181 | 0.9297406 | NR_024131.1 | RNA |
| 0.1785177 | 3.5415856 | 0.5163568 | XM_006560013.2 | X1 |
| -0.8898835 | -1.6484068 | 0.5817895 | NM_001134936.1 | B |
| 1.2638771 | 0.1321281 | 0.1990717 | NM_001134935.1 | F2 |
| -1.3646990 | -2.4301461 | 0.5026855 | NM_001111255.1 | M |
As reported by the authors, Dsx is not differentially expressed by caste. However, even in our experiment, the difference is marginal, so we should look in some greater detail at other associated genes.
heExpDat <- as.data.frame(t(heTPM[,-1]))
colnames(heExpDat) <- heTPM$gene_id
pickSoftThreshold(heExpDat, RsquaredCut = 0.8, networkType = "unsigned")$powerEstimate
## Power SFT.R.sq slope truncated.R.sq mean.k. median.k. max.k.
## 1 1 0.527 1.060 0.682 4020.0 4230.00 6890
## 2 2 0.472 -0.280 0.408 2000.0 1900.00 4650
## 3 3 0.709 -0.569 0.650 1210.0 977.00 3460
## 4 4 0.760 -0.688 0.723 807.0 546.00 2720
## 5 5 0.764 -0.774 0.750 576.0 323.00 2220
## 6 6 0.753 -0.845 0.762 430.0 198.00 1870
## 7 7 0.769 -0.894 0.801 332.0 126.00 1600
## 8 8 0.758 -0.941 0.813 263.0 82.70 1380
## 9 9 0.770 -0.972 0.838 212.0 56.00 1210
## 10 10 0.779 -1.010 0.857 173.0 38.80 1070
## 11 12 0.788 -1.070 0.887 121.0 20.30 856
## 12 14 0.789 -1.120 0.902 87.5 11.10 699
## 13 16 0.799 -1.160 0.920 65.3 6.59 580
## 14 18 0.807 -1.190 0.933 49.9 4.22 488
## 15 20 0.817 -1.220 0.943 38.8 2.63 416
## [1] 18
heSoftPower <- 18
heNet <- blockwiseModules(heExpDat, power = heSoftPower,
TOMType = "unsigned", minModuleSize = 30,
reassignThreshold = 0, mergeCutHeight = 0.25,
numericLabels = TRUE, pamRespectsDendro = FALSE,
saveTOMs = FALSE,
verbose = 3, maxBlockSize = 15000)
saveRDS(heNet, "data/he_net.rds")
Do the Dsx containing modules overlap between studies
heAlldegrees <- intramodularConnectivity.fromExpr(heExpDat, heNet$colors, power = heSoftPower)
## softConnectivity: FYI: connecitivty of genes with less than 12 valid samples will be returned as NA.
## ..calculating connectivities..
heAlldegrees$gene_id <- colnames(heExpDat)
(heDsxModule <- heNet$colors[which(colnames(heExpDat) == "Dsx")])
## [1] 2
heDsxModuleGenes <- colnames(heExpDat)[heNet$colors == heDsxModule]
bothDsx <- table(net$colors == DsxModule & heNet$colors == heDsxModule)[2]
heDsx <- table(heNet$colors == heDsxModule)[2]
ourDsx <- table(net$colors == DsxModule)[2]
phyper(bothDsx, ourDsx, table(net$colors == DsxModule)[1], heDsx, lower.tail = F)
## TRUE
## 3.751621e-52
sum(bothDsx)/sum(ourDsx)
## [1] 0.5056877
heDsxModuleGenes <- descriptions %>% filter(gene_id %in% colnames(heExpDat)[heNet$colors == heDsxModule] ) %>% left_join(deHe.tgw$table, by = "gene_id") %>% left_join(heAlldegrees %>% dplyr::select(gene_id, kWithin), by="gene_id") %>% dplyr::select(gene = gene_id, description = description.x, logFC, kWithin, logCPM) %>% arrange(desc(logFC))
highligh <- which(heDsxModuleGenes$gene %in% colnames(heExpDat)[net$colors == DsxModule])
| gene | description | logFC | kWithin | logCPM |
|---|---|---|---|---|
| LOC551446 | RNA-binding protein lark | 0.0759105 | 197.1002629 | 9.2662342 |
| LOC726544 | serine/threonine-protein phosphatase 4 regulatory subunit 1-like | -0.1651126 | 190.0478974 | 7.7175277 |
| LOC727008 | probable ATP-dependent RNA helicase DDX46 | 0.1750100 | 187.1465186 | 7.3478951 |
| LOC410398 | insulin-like growth factor 2 mRNA-binding protein 1 | -0.0307601 | 186.7475200 | 9.4372170 |
| LOC410585 | DE-cadherin | -0.0815361 | 186.6531278 | 6.3047862 |
| LOC102656501 | zinc finger protein 2-like | 0.1548814 | 182.1437257 | 5.9556795 |
| LOC411234 | aryl hydrocarbon receptor nuclear translocator homolog | 0.0390675 | 178.0467660 | 5.9260672 |
| LOC409242 | protein PRRC2C-like | 0.1466820 | 177.1449430 | 9.3822703 |
| LOC410502 | transformation/transcription domain-associated protein | 0.2116009 | 176.9511689 | 6.4239126 |
| LOC724417 | uncharacterized protein CG43867 | 0.0687125 | 176.2016741 | 5.6834534 |
| LOC408793 | histone acetyltransferase KAT7 | -0.0369484 | 174.5978013 | 6.1884381 |
| LOC409065 | TAR DNA-binding protein 43 | 0.0277555 | 174.0050195 | 7.4522753 |
| LOC726671 | uncharacterized LOC726671 | -0.0222037 | 173.4633889 | 4.1247768 |
| LOC100576404 | probable helicase with zinc finger domain | -0.1105016 | 173.4512911 | 6.9528521 |
| LOC725433 | uncharacterized LOC725433 | 0.0507481 | 171.7715047 | 6.7162238 |
| LOC409961 | heterogeneous nuclear ribonucleoprotein 27C | 0.0602988 | 170.1823081 | 8.3797616 |
| LOC408372 | poly(rC)-binding protein 3 | 0.0431607 | 169.3512953 | 7.0986739 |
| LOC409921 | zinc finger protein Elbow-like | -0.1995200 | 168.7129976 | 4.1847294 |
| LOC102654736 | zinc finger protein 239-like | -0.0022730 | 168.4752193 | 3.9882254 |
| LOC724242 | protein neuralized | -0.0249785 | 166.7574672 | 5.5840059 |
| LOC414025 | zinc finger protein Noc-like | -0.2279467 | 166.7386778 | 5.3805834 |
| LOC410775 | laminin subunit alpha-1 | -0.0459389 | 165.9598687 | 6.7968404 |
| LOC412997 | DDB1- and CUL4-associated factor 10 | 0.1246740 | 165.1042525 | 5.2555203 |
| LOC551973 | cleavage and polyadenylation specificity factor subunit CG7185 | 0.2538421 | 163.9184738 | 7.4743922 |
| LOC409158 | C-terminal-binding protein | -0.0597774 | 163.0687506 | 7.9299602 |
| LOC551203 | E3 ubiquitin-protein ligase MYCBP2-like | -0.0080336 | 161.9856480 | 5.6781792 |
| LOC413024 | carboxyl-terminal PDZ ligand of neuronal nitric oxide synthase protein-like | -0.0625718 | 161.4799098 | 4.4423340 |
| LOC726280 | histone acetyltransferase p300-like | 0.1208942 | 161.0075365 | 7.6077927 |
| LOC725834 | septin-7 | 0.1210331 | 160.5351551 | 6.0139894 |
| LOC409711 | kazrin | -0.3225122 | 160.2214506 | 3.0602884 |
| LOC102654533 | protein pangolin, isoforms A/H/I/S-like | 0.0026882 | 159.7767861 | 3.2009754 |
| LOC409006 | arrestin red cell | 0.0814656 | 159.4147965 | 6.0128926 |
| LOC551735 | fibrosin-1-like protein | 0.0274101 | 159.2926597 | 6.1886849 |
| LOC551071 | bromodomain adjacent to zinc finger domain protein 2B | -0.0072832 | 158.7287021 | 6.6667079 |
| LOC552094 | transcriptional repressor p66-beta | -0.0410123 | 158.4267720 | 6.6284729 |
| LOC413318 | metastasis-associated protein MTA3 | 0.2021886 | 157.6797563 | 7.6587802 |
| LOC100577393 | epidermal growth factor receptor-like | 0.0185949 | 155.9421570 | 6.3930240 |
| LOC411828 | DNA-binding protein P3A2 | -0.0121552 | 155.7611317 | 5.2220055 |
| LOC409093 | flocculation protein FLO11 | -0.0349813 | 155.1960551 | 8.2951992 |
| LOC409849 | immunoglobulin-like and fibronectin type III domain containing 12 | -0.3056862 | 155.1746149 | 5.6820654 |
| LOC552278 | protein-tyrosine sulfotransferase | 0.0621417 | 154.7171104 | 5.2204070 |
| LOC413669 | protein lap4 | 0.2334393 | 152.6919804 | 6.6900273 |
| LOC413618 | uncharacterized LOC413618 | 0.0596088 | 152.6566399 | 6.0664433 |
| LOC413289 | neurogenic locus Notch protein | -0.0254162 | 151.8418013 | 5.4209314 |
| LOC725117 | protein sprouty homolog 2 | -0.2617333 | 151.4876304 | 7.1403192 |
| LOC411600 | PAX-interacting protein 1 | -0.0614448 | 151.0557825 | 5.0674303 |
| LOC724160 | DNA ligase 1-like | 0.0431082 | 149.9505217 | 7.0932968 |
| LOC408389 | protein trachealess | -0.2260281 | 149.8738585 | 6.8035227 |
| LOC408528 | colorectal mutant cancer protein | -0.0700079 | 149.5831419 | 4.8997804 |
| LOC409049 | paired amphipathic helix protein Sin3a | 0.0002157 | 148.5771132 | 7.0740299 |
| LOC551822 | ATP-dependent RNA helicase DDX42 | -0.0230263 | 147.8928172 | 6.7004687 |
| LOC409727 | kinesin 13 | -0.1089651 | 146.9161412 | 6.7506374 |
| LOC411466 | histone-lysine N-methyltransferase 2C | 0.1105865 | 146.6559291 | 7.6837145 |
| Nipped-B | nipped-B protein | 0.0838655 | 146.2895724 | 6.9107724 |
| LOC411969 | heterogeneous nuclear ribonucleoprotein M | 0.0945200 | 145.5513116 | 9.0449911 |
| InR-2 | insulin-like receptor-like | -0.5883068 | 145.3385896 | 4.8083371 |
| LOC413377 | PHD finger protein rhinoceros | 0.0153816 | 145.1463165 | 6.9099407 |
| LOC724947 | lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase | -0.0060420 | 144.7825850 | 4.8384481 |
| LOC413488 | protein vav | 0.0565972 | 144.3887249 | 6.3719396 |
| LOC411748 | protein kinase C-binding protein NELL1-like | -0.2952662 | 143.5240691 | 4.1259169 |
| LOC409898 | protein expanded-like | -0.1305066 | 143.2618336 | 4.9305131 |
| LOC726350 | putative ATP-dependent RNA helicase DHX33 | 0.0071792 | 142.9988851 | 5.4431120 |
| LOC100576896 | uncharacterized LOC100576896 | -0.1601886 | 142.9983418 | 6.1659117 |
| LOC724737 | trichohyalin-like | -0.4556165 | 142.6790791 | 5.9489156 |
| LOC411986 | uncharacterized LOC411986 | -0.0540675 | 142.5845417 | 5.2870233 |
| LOC724535 | uncharacterized LOC724535 | -0.0184745 | 142.3846236 | 8.0705138 |
| LOC100577578 | uncharacterized LOC100577578 | -0.1813159 | 142.3511544 | 7.9433674 |
| LOC725754 | zinc finger protein castor homolog 1-like | -0.3069432 | 142.2479887 | 5.8847575 |
| LOC100578718 | protein distal antenna | 0.1420401 | 142.1066761 | 5.1432845 |
| LOC408903 | uncharacterized LOC408903 | -0.0972579 | 141.6821483 | 4.5412608 |
| LOC408309 | serine-arginine protein 55 | 0.1082350 | 141.6440784 | 9.9770502 |
| LOC413025 | peroxidasin | 0.1608091 | 140.6191435 | 6.2580125 |
| LOC410245 | urokinase-type plasminogen activator | -0.1754875 | 140.0763059 | 3.4344275 |
| LOC408763 | homeobox protein extradenticle | -0.1591675 | 139.6957534 | 7.7282764 |
| LOC408960 | protein slit | -0.6121051 | 139.5180318 | 4.4554013 |
| LOC551801 | host cell factor 1 | 0.1257070 | 139.4851252 | 7.6613114 |
| LOC408602 | MKL/myocardin-like protein 2 | -0.1252115 | 139.1412702 | 5.7292727 |
| LOC410923 | dynamin | -0.0743190 | 138.2016679 | 6.6900429 |
| LOC410304 | zinc finger homeobox protein 4 | -0.4251595 | 137.8956041 | 5.0220075 |
| LOC408335 | nuclear pore complex protein Nup98-Nup96 | 0.0115710 | 137.7197063 | 8.0930397 |
| LOC727308 | ephrin-B1-like | -0.2039249 | 137.6825180 | 5.6114802 |
| LOC551261 | plasma membrane calcium-transporting ATPase 2 | 0.2726695 | 137.6233165 | 6.8026305 |
| LOC410989 | menin | 0.1135650 | 137.5053485 | 5.4022552 |
| LOC414004 | eukaryotic translation initiation factor 3 subunit A | 0.1205180 | 137.4360260 | 9.7205756 |
| LOC413577 | serine/threonine-protein kinase 32B | 0.0136594 | 137.0161216 | 4.8574734 |
| LOC408292 | transcriptional coactivator YAP1 | 0.1027783 | 136.9154519 | 7.0667252 |
| LOC410580 | fragile X mental retardation syndrome-related protein 1 | 0.0667856 | 136.6092241 | 7.7610649 |
| LOC408306 | sodium/hydrogen exchanger 3 | 0.0131209 | 135.4064259 | 4.0909713 |
| LOC409634 | uncharacterized LOC409634 | -0.1517980 | 135.2948746 | 5.9287697 |
| LOC409501 | SWI/SNF complex subunit SMARCC1-like | 0.1879789 | 134.7689163 | 7.9926422 |
| LOC100576196 | uncharacterized LOC100576196 | -0.2096685 | 134.6928865 | 5.9332003 |
| LOC409410 | plasminogen activator inhibitor 1 RNA-binding protein-like | 0.2583946 | 134.2231211 | 11.0381844 |
| LOC411276 | hybrid signal transduction histidine kinase D | -0.3540879 | 134.2147167 | 4.8495780 |
| LOC100578388 | uncharacterized LOC100578388 | -0.0686961 | 134.2107340 | 4.3996424 |
| LOC726093 | tetratricopeptide repeat protein 14 homolog | 0.0602186 | 133.6314401 | 10.0421322 |
| LOC413812 | formin-binding protein 1-like | 0.0395081 | 133.3569967 | 6.3850463 |
| LOC414022 | ankyrin repeat domain-containing protein 12 | 0.1079842 | 133.1998243 | 6.6478836 |
| LOC724973 | focal adhesion kinase 1 | 0.0779980 | 132.9471309 | 5.9151856 |
| LOC411227 | tyrosine-protein phosphatase non-receptor type 9 | -0.2353075 | 132.1631694 | 5.9223163 |
| LOC410408 | conserved ATPase domain protein | 0.1939967 | 132.0816789 | 9.1164537 |
| LOC725396 | THO complex subunit 4 | 0.0789029 | 131.1339889 | 7.7882239 |
| LOC413200 | fibroblast growth factor receptor homolog 1 | -0.5028544 | 131.0754819 | 5.2704159 |
| tra2 | transformer-2 sex-determining protein | 0.1478448 | 130.9884141 | 7.2002581 |
| LOC552046 | zinc finger RNA-binding protein | 0.1150394 | 130.9181696 | 9.0920645 |
| LOC726101 | uncharacterized LOC726101 | 0.0428630 | 130.8268524 | 5.8718004 |
| LOC413433 | protein lingerer | 0.2739124 | 130.7636315 | 8.0697250 |
| LOC409423 | male-specific lethal 1 homolog | -0.0622450 | 130.7453856 | 4.9238444 |
| LOC413683 | arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 1 | 0.0451244 | 130.6155271 | 5.7420742 |
| LOC100577927 | polynucleotide 5’-hydroxyl-kinase NOL9 | 0.0242387 | 130.2834450 | 5.7712440 |
| LOC410688 | RNA-binding protein 5-like | 0.1414630 | 129.8436631 | 7.1159521 |
| LOC411808 | proline dehydrogenase, mitochondrial | 0.2974936 | 129.7588421 | 5.4437056 |
| LOC409286 | stress-activated protein kinase JNK | -0.0558095 | 129.0192847 | 6.1006410 |
| LOC102655737 | neural-cadherin-like | -0.3851112 | 128.5250775 | 3.3333408 |
| LOC724453 | serine/threonine-protein kinase PAK 3 | -0.0305910 | 128.2938513 | 5.8071055 |
| LOC410922 | wiskott-Aldrich syndrome protein family member 3 | -0.0009049 | 128.2255900 | 5.2925886 |
| NLG-3 | neuroligin 3 | -0.5538677 | 128.1527418 | 1.9177989 |
| LOC410351 | neurogenic locus protein delta | -0.2752994 | 127.6889450 | 3.6982193 |
| LOC409075 | mesoderm induction early response protein 1 | 0.2087401 | 127.6230965 | 6.4384795 |
| LOC100578888 | zinc finger protein 62 homolog | 0.0639280 | 126.8325077 | 5.0132279 |
| LOC409111 | serine/threonine-protein kinase minibrain | -0.2615281 | 126.8012130 | 7.5691605 |
| LOC409983 | ankyrin repeat domain-containing protein 17 | 0.0086651 | 126.7515916 | 9.6299393 |
| LOC100578159 | zinc finger matrin-type protein CG9776-like | 0.0471016 | 126.6040485 | 7.9649498 |
| LOC408966 | dnaJ homolog subfamily B member 6-like | 0.1522472 | 126.5472656 | 7.2734997 |
| LOC410414 | 116 kDa U5 small nuclear ribonucleoprotein component | 0.3896243 | 126.3278126 | 7.1670570 |
| LOC100577697 | uncharacterized LOC100577697 | -0.2302809 | 125.6899862 | 4.0882945 |
| LOC408890 | protein groucho-1 | 0.0061985 | 125.3733558 | 6.5661866 |
| LOC724322 | serum response factor homolog | 0.1529477 | 125.0769000 | 4.3921312 |
| LOC410514 | uncharacterized LOC410514 | 0.0894513 | 124.7433263 | 4.5815983 |
| LOC102654084 | tetraspanin-3-like | -0.2119269 | 124.6740340 | 3.8989539 |
| LOC102656585 | CD151 antigen-like | -0.0152830 | 124.5548877 | 4.1857558 |
| LOC409127 | tyrosine-protein kinase Abl | 0.0263484 | 124.4878552 | 6.9185523 |
| LOC724269 | connectin | -0.2446383 | 124.1916251 | 3.3365058 |
| LOC411344 | fasciclin-1 | -0.1203837 | 124.1795856 | 4.6845367 |
| LOC726018 | replication factor C subunit 4-like | 0.0835096 | 124.0525604 | 4.9398663 |
| LOC409900 | methyltransferase-like protein 14 homolog | -0.1427449 | 124.0426912 | 5.5385857 |
| LOC409795 | telomerase-binding protein EST1A | -0.1403126 | 123.9316698 | 5.6118297 |
| LOC551340 | forkhead box protein K1 | 0.1424386 | 123.6275285 | 5.7250365 |
| LOC552177 | uncharacterized LOC552177 | -0.2443363 | 123.4190269 | 5.3206102 |
| LOC100577376 | voltage-dependent calcium channel subunit alpha-2/delta-3-like | -0.0494300 | 123.3820545 | 4.0585677 |
| LOC724924 | protein FAM117B-like | 0.1008309 | 123.3679902 | 4.8511955 |
| LOC551673 | serine/threonine-protein kinase tousled-like 2 | 0.0490663 | 123.1347503 | 6.9509113 |
| LOC550921 | ubiquitin-like protein 3 | -0.0673361 | 123.0316545 | 6.3051378 |
| LOC409045 | transcription elongation regulator 1 | -0.1022452 | 123.0157426 | 8.6402599 |
| LOC411901 | DDB1- and CUL4-associated factor 7 | -0.1051210 | 122.8970385 | 2.9318773 |
| LOC727230 | eukaryotic translation initiation factor 4E transporter | 0.0359156 | 122.8736672 | 5.9121238 |
| LOC409007 | heterogeneous nuclear ribonucleoprotein K | -0.0322945 | 122.8029364 | 8.5586428 |
| LOC409778 | storkhead-box protein 2 | 0.1164882 | 122.4488908 | 5.6184613 |
| LOC410769 | puromycin-sensitive aminopeptidase | 0.1799745 | 122.3709568 | 9.3558633 |
| LOC413782 | cartilage oligomeric matrix protein | 0.2191041 | 122.3090246 | 4.3649876 |
| LOC409782 | pikachurin | -0.3722959 | 122.0901427 | 4.4587293 |
| LOC552585 | uncharacterized LOC552585 | 0.3182537 | 122.0582309 | 6.8747209 |
| LOC411539 | KAT8 regulatory NSL complex subunit 1 | 0.1597213 | 121.9501771 | 6.9934919 |
| LOC408897 | uncharacterized LOC408897 | 0.0215738 | 121.8343205 | 6.4872536 |
| LOC551799 | putative mediator of RNA polymerase II transcription subunit 26 | -0.0808435 | 121.8175539 | 6.0962199 |
| LOC551349 | protein BCL9 homolog | 0.0904953 | 121.7588447 | 5.3909183 |
| LOC724358 | neuroligin 1 | -0.3884087 | 121.4314229 | 2.9286340 |
| LOC410788 | glutamate receptor ionotropic, kainate 2-like | 0.1043334 | 121.3954206 | 4.4681296 |
| LOC413427 | uncharacterized LOC413427 | -0.0594043 | 121.3503264 | 4.3353502 |
| LOC413428 | uncharacterized LOC413428 | -0.5248850 | 121.3159458 | 4.7907237 |
| LOC408481 | chloride intracellular channel exc-4 | -0.0802915 | 120.9405243 | 7.2135143 |
| LOC413504 | serine/threonine-protein kinase mig-15 | -0.0678546 | 120.8555386 | 7.0107595 |
| LOC412601 | mothers against decapentaplegic homolog 3 | 0.0095569 | 120.6252445 | 6.0661317 |
| LOC413834 | atypical protein kinase C | -0.1123138 | 120.5289289 | 6.0498128 |
| LOC100578885 | putative transcription factor capicua | 0.2737190 | 120.4385595 | 6.3505607 |
| LOC100578706 | uncharacterized LOC100578706 | -0.0740759 | 120.4006297 | 5.5048518 |
| LOC408839 | uncharacterized LOC408839 | -0.1361867 | 120.2668417 | 4.8531127 |
| LOC551167 | multidrug resistance protein homolog 49 | -0.0529873 | 120.1998992 | 8.7794271 |
| LOC411086 | protein jagged-1 | 0.0709998 | 119.3465489 | 4.0875760 |
| LOC411212 | discoidin domain-containing receptor 2-like | -0.5968579 | 119.3222002 | 4.9147294 |
| LOC100576392 | transcriptional regulator Myc-B | 0.2835904 | 119.2753492 | 7.5418028 |
| LOC551928 | transcription factor Sp4-like | 0.0796253 | 119.1392892 | 5.4342145 |
| LOC726178 | hrp65 protein-like | 0.1144705 | 118.9592613 | 9.1257817 |
| LOC100577280 | uncharacterized LOC100577280 | 0.0361429 | 118.8703264 | 7.0463385 |
| LOC408949 | serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit gamma isoform-like | 0.1100137 | 118.1631338 | 5.6995548 |
| LOC100578899 | muscle calcium channel subunit alpha-1 | -0.2213301 | 117.9916824 | 5.0697798 |
| LOC408767 | protein dachsous | -0.3410843 | 117.8577851 | 4.0427307 |
| LOC724501 | Axis inhibition protein | 0.3669848 | 117.8211022 | 4.8666563 |
| LOC408390 | ankyrin repeat domain-containing protein 6 | 0.1415093 | 117.7656568 | 3.9501388 |
| LOC409016 | uncharacterized LOC409016 | -0.2191209 | 117.7565343 | 2.7316669 |
| LOC409915 | RNA-binding protein 26 | 0.2296789 | 117.7165864 | 6.5977757 |
| LOC409034 | uncharacterized LOC409034 | -0.1935953 | 117.5572520 | 7.9349930 |
| LOC726654 | T-box protein H15-like | -0.4374693 | 117.5254375 | 2.0160932 |
| LOC408725 | protein sickie-like | -0.0549304 | 117.3112227 | 4.0585361 |
| LOC408963 | pleckstrin homology domain-containing family G member 5-like | 0.0554498 | 117.0297567 | 5.8188897 |
| LOC726709 | uncharacterized LOC726709 | -0.2362632 | 116.9342110 | 7.3850550 |
| LOC551146 | glycine-rich protein DOT1 | 0.0801153 | 116.8431196 | 8.1504852 |
| LOC408562 | uncharacterized LOC408562 | 0.3581884 | 116.6744927 | 7.2393020 |
| LOC409504 | flocculation protein FLO11-like | -0.2046195 | 116.5854124 | 6.0595097 |
| LOC412422 | mediator of RNA polymerase II transcription subunit 1 | 0.1662577 | 116.2891370 | 6.1900191 |
| LOC410998 | E3 ubiquitin-protein ligase TRIM9 | -0.2934501 | 116.2800220 | 4.8963244 |
| LOC410203 | POU domain protein CF1A | -0.3109779 | 116.2759433 | 6.1288958 |
| LOC410632 | G protein-coupled receptor kinase 2 | 0.1068478 | 116.2276105 | 3.4321273 |
| LOC413409 | cytoplasmic dynein 1 intermediate chain | -0.0008026 | 116.0065552 | 6.8666089 |
| LOC412960 | receptor-type tyrosine-protein phosphatase kappa | -0.7079359 | 115.9956333 | 2.1311946 |
| LOC408548 | MICOS complex subunit Mic60 | 0.1378681 | 115.9386384 | 8.8452037 |
| LOC726469 | lysine-specific histone demethylase 1A | -0.1019344 | 115.8460808 | 4.2931840 |
| LOC100577174 | ras-responsive element-binding protein 1-like | 0.1610952 | 115.8342094 | 5.4597333 |
| LOC726510 | M-phase inducer phosphatase 1-like | 0.1576762 | 115.7451182 | 5.3281197 |
| LOC413288 | polycomb protein Pcl | -0.1588220 | 115.7166480 | 6.0201802 |
| LOC410044 | rho GTPase-activating protein 20-like | -0.0910773 | 115.3699504 | 5.5608565 |
| LOC410809 | protein pygopus | 0.0579750 | 115.1258966 | 5.1171537 |
| LOC726231 | uncharacterized LOC726231 | -0.0827919 | 115.0235247 | 7.4047346 |
| LOC552505 | monocarboxylate transporter 9-like | 0.1114200 | 114.9081619 | 6.2108610 |
| LOC408616 | transcriptional enhancer factor TEF-1 | 0.0880932 | 114.7576196 | 5.2573052 |
| LOC410819 | uncharacterized LOC410819 | -0.0801935 | 114.6624507 | 7.7885297 |
| LOC100578826 | protein strawberry notch-like | 0.2369321 | 114.5171291 | 6.9384752 |
| LOC410159 | mediator of RNA polymerase II transcription subunit 13 | -0.0379770 | 114.5007133 | 6.9597107 |
| LOC726349 | actin-binding LIM protein 2 | 0.0732171 | 114.4940105 | 6.9113475 |
| LOC412859 | hemicentin-2 | -0.5481178 | 114.4715611 | 4.6316677 |
| LOC724311 | AT-rich interactive domain-containing protein 2 | 0.0258724 | 114.4299496 | 6.3407207 |
| LOC408693 | epidermal growth factor receptor kinase substrate 8-like | 0.0722613 | 114.3516987 | 6.1800394 |
| LOC411079 | protein grainyhead | -0.0910251 | 114.1495533 | 5.3935734 |
| LOC413130 | RNA polymerase-associated protein CTR9 homolog | 0.1009237 | 114.0213386 | 6.6533997 |
| LOC725495 | homeobox protein GBX-2 | 0.0371075 | 113.9091565 | 1.7892019 |
| LOC551920 | mucin-5AC | -0.4711768 | 113.6293320 | 5.5549065 |
| LOC409271 | mediator of RNA polymerase II transcription subunit 12 | 0.1430505 | 113.6199998 | 6.5043562 |
| LOC411038 | uncharacterized LOC411038 | -0.4454970 | 113.5044406 | 5.0394028 |
| LOC409027 | leucine-rich repeat and calponin homology domain-containing protein 1 | -0.2244637 | 113.3458429 | 5.6779460 |
| LOC413545 | WW domain-containing adapter protein with coiled-coil | 0.0995287 | 113.1247803 | 6.7589794 |
| LOC724344 | probable Ras GTPase-activating protein | -0.1506214 | 113.0537503 | 5.9395997 |
| LOC100576321 | uncharacterized LOC100576321 | 0.1544921 | 112.9846668 | 5.7285174 |
| LOC411124 | phosphoinositide 3-kinase adapter protein 1 | 0.1889121 | 112.6319368 | 6.1308304 |
| LOC408680 | ryanodine receptor | -0.2702277 | 112.3889219 | 5.6007199 |
| EphR | Eph receptor tyrosine kinase | -0.4083056 | 112.2251827 | 8.0910804 |
| LOC408623 | endophilin-A | -0.0473265 | 112.1607205 | 5.1173487 |
| LOC411115 | baculoviral IAP repeat-containing protein 6 | -0.0164562 | 112.1256205 | 8.3686633 |
| LOC410706 | rho GTPase-activating protein 7 | -0.1826145 | 112.1016058 | 6.1864709 |
| LOC724189 | uncharacterized LOC724189 | -0.2597076 | 112.0839989 | 6.1898549 |
| LOC408275 | uncharacterized LOC408275 | -0.0328165 | 111.8867831 | 6.5155933 |
| LOC552294 | far upstream element-binding protein 3 | 0.0782368 | 111.8701217 | 6.9499547 |
| LOC411154 | eukaryotic translation initiation factor 4 gamma 2 | 0.3085123 | 111.4353667 | 9.3021059 |
| LOC412870 | mediator of RNA polymerase II transcription subunit 30 | 0.0713382 | 111.2843785 | 4.7845248 |
| LOC100576640 | uncharacterized LOC100576640 | 0.1043172 | 111.1186982 | 5.4443544 |
| Rga | regulator of gene activity protein | 0.1309540 | 110.8607608 | 6.4656190 |
| LOC100578579 | uncharacterized LOC100578579 | -0.2017917 | 110.7715603 | 6.2378955 |
| LOC410179 | uncharacterized LOC410179 | -0.0900366 | 110.7333408 | 5.4200488 |
| LOC100576709 | mitogen-activated protein kinase-binding protein 1 | 0.2310886 | 110.5628625 | 5.1737170 |
| LOC551602 | ras GTPase-activating protein-binding protein 2 | 0.2691452 | 110.2070571 | 8.6296372 |
| LOC412778 | chondroitin sulfate proteoglycan 4 | -0.2347803 | 109.8981854 | 4.3399369 |
| LOC551683 | palmitoyltransferase ZDHHC5 | -0.0497665 | 109.5471164 | 6.6078543 |
| LOC102654773 | zinc finger protein 664-like | -0.1602278 | 109.5368522 | 5.3524325 |
| LOC100576384 | tyrosine-protein phosphatase 10D | 0.1205978 | 109.3997903 | 7.1195235 |
| LOC100578818 | amyloid beta A4 precursor protein-binding family B member 1-interacting protein | 0.1473273 | 109.3163412 | 6.0602536 |
| LOC725350 | GATA-binding factor A | -0.3084078 | 109.2229960 | 2.3428165 |
| LOC409282 | bromodomain-containing protein DDB_G0280777-like | -0.0390383 | 109.1483462 | 5.6594473 |
| LOC409883 | splicing factor 3A subunit 1 | 0.1464364 | 109.1341363 | 7.0078790 |
| LOC551432 | zinc finger and BTB domain-containing protein 20 | -0.8802319 | 108.8697044 | 5.0045304 |
| LOC551826 | bromodomain-containing protein 2-like | -0.0429178 | 108.6151608 | 7.9248151 |
| LOC409470 | zinc finger protein 271-like | 0.1418945 | 108.5739178 | 7.8786959 |
| LOC412839 | homeobox protein caupolican | -0.3098414 | 108.4634421 | 4.7537486 |
| LOC724192 | titin-like | -0.1181253 | 108.0856111 | 9.4161084 |
| Nedd9 | neural precursor cell expressed, developmentally down-regulated gene 9 | 0.0845109 | 108.0409071 | 5.1908774 |
| LOC409099 | E3 ubiquitin-protein ligase UBR5 | 0.2255713 | 107.9554564 | 8.5920421 |
| LOC410307 | angiomotin-like protein 1 | 0.0320827 | 107.9189682 | 5.6416839 |
| LOC408333 | uncharacterized LOC408333 | 0.1683543 | 107.8799757 | 7.1852329 |
| LOC552027 | heterogeneous nuclear ribonucleoprotein A1, A2/B1 homolog | 0.1107785 | 107.6073673 | 9.1858051 |
| LOC412046 | trithorax group protein osa | -0.1972517 | 107.3973291 | 8.3937069 |
| LOC100576615 | uncharacterized LOC100576615 | -0.1154850 | 107.3723610 | 4.6180687 |
| LOC409658 | uncharacterized LOC409658 | -0.2578736 | 107.3054121 | 6.8777965 |
| LOC413968 | dystrophin, isoforms A/C/F/G/H-like | -0.2489754 | 107.0135215 | 7.9159117 |
| LOC413385 | uncharacterized LOC413385 | -0.2629988 | 106.7029466 | 5.1002266 |
| LOC724651 | amphoterin-induced protein 2-like | -0.0084652 | 106.6526295 | 3.2133987 |
| brp | bruchpilot | -0.6335714 | 106.4905504 | 4.6589703 |
| LOC102655479 | apoptosis-stimulating of p53 protein 2-like | -0.1707024 | 106.4883886 | 6.3114346 |
| LOC410362 | MOXD1 homolog 2 | -0.1099547 | 106.1883096 | 2.5751934 |
| LOC410108 | zinc finger protein 91-like | -0.0461509 | 106.1174792 | 4.6400371 |
| LOC100578600 | uncharacterized LOC100578600 | -0.1473853 | 106.0945996 | 5.6863214 |
| LOC413310 | protein-methionine sulfoxide oxidase Mical | -0.3198748 | 106.0831191 | 7.5790836 |
| LOC551624 | TOX high mobility group box family member 3-like | 0.0682615 | 106.0102266 | 6.8306039 |
| LOC412077 | SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1 | 0.1172402 | 105.9792234 | 6.4079875 |
| LOC412916 | ETS-like protein pointed | -0.4526947 | 105.8329110 | 5.9138913 |
| LOC551501 | fringe glycosyltransferase | -0.1557100 | 105.4014419 | 3.7837541 |
| LOC724683 | oxidative stress-responsive serine-rich protein 1 | 0.0614901 | 105.2210113 | 4.5387585 |
| LOC725592 | protein prenyltransferase alpha subunit repeat-containing protein 1 | -0.0134657 | 105.1859124 | 5.6800987 |
| LOC100578771 | uncharacterized LOC100578771 | 0.1332435 | 104.9932779 | 1.1210198 |
| LOC413224 | sn1-specific diacylglycerol lipase alpha | 0.2669628 | 104.9892513 | 4.0773478 |
| LOC725776 | early growth response protein 1-like | -0.4137287 | 104.8448867 | 4.2272562 |
| LOC724333 | beta-1-syntrophin | -0.4037969 | 104.8424235 | 5.8060460 |
| LOC726068 | uncharacterized LOC726068 | -0.4499689 | 104.7265639 | 5.0032147 |
| LOC410527 | probable cation-transporting ATPase 13A3 | 0.1968497 | 104.6568101 | 7.8857968 |
| LOC408905 | uncharacterized LOC408905 | -0.0928784 | 104.6046868 | 6.1351430 |
| LOC412840 | homeobox protein caupolican-like | -0.0915832 | 104.4347111 | 5.3394120 |
| LOC408721 | neurocalcin homolog | -0.1231300 | 104.3659115 | 5.1999446 |
| LOC727106 | heterogeneous nuclear ribonucleoprotein H | 0.1129903 | 104.2263907 | 7.1053406 |
| LOC724235 | uncharacterized LOC724235 | -0.0038718 | 104.1123298 | 5.8895523 |
| LOC410674 | heterogeneous nuclear ribonucleoprotein L | -0.0516180 | 103.7738209 | 7.8099979 |
| LOC551774 | acidic leucine-rich nuclear phosphoprotein 32 family member B | -0.0891888 | 103.6440164 | 11.1241853 |
| LOC107964343 | serine/arginine repetitive matrix protein 1-like | -0.1172459 | 103.5914268 | 3.6749281 |
| LOC409788 | SAFB-like transcription modulator | -0.0326978 | 103.5875654 | 7.8995437 |
| LOC410383 | calcium homeostasis endoplasmic reticulum protein | 0.0366991 | 103.3758332 | 5.9073822 |
| LOC724508 | trichoplein keratin filament-binding protein-like | -0.1222394 | 103.3061229 | 3.8784490 |
| LOC102656656 | uncharacterized LOC102656656 | -0.2500928 | 103.0553009 | 1.8273893 |
| LOC102654281 | uncharacterized LOC102654281 | -0.6801807 | 102.8419824 | 3.7217233 |
| LOC413440 | protein kibra | 0.0265784 | 102.8407588 | 6.1001108 |
| LOC726130 | beta-3 adrenergic receptor-like | -0.3371086 | 102.8179717 | 2.4842806 |
| LOC551258 | serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit epsilon isoform | 0.1626781 | 102.7746817 | 6.7811952 |
| LOC409043 | high-affinity choline transporter 1-like | -0.4757324 | 102.5609948 | 4.0889707 |
| LOC410348 | katanin p80 WD40 repeat-containing subunit B1 | -0.1734548 | 102.4232215 | 5.8276867 |
| LOC724411 | rhophilin-2 | -0.0455521 | 102.2891485 | 5.6832373 |
| LOC550818 | guanine nucleotide-binding protein G(q) subunit alpha | -0.0461149 | 101.8571892 | 7.0691402 |
| LOC412254 | BUB3-interacting and GLEBS motif-containing protein ZNF207 | 0.1913654 | 101.7868452 | 5.6863613 |
| LOC408803 | tensin-1 | -0.0093382 | 101.5733147 | 5.6186901 |
| LOC411238 | LIM domain-binding protein 2 | -0.3977666 | 101.3666398 | 6.2836036 |
| LOC408936 | RNA-binding protein squid | 0.0223720 | 101.2464529 | 10.2881230 |
| LOC551272 | talin-1 | 0.1072119 | 101.0838848 | 7.0149784 |
| LOC412274 | plexin-B | 0.3136496 | 100.9847990 | 6.1367963 |
| LOC725928 | dedicator of cytokinesis protein 3 | -0.1282060 | 100.9775863 | 5.7629531 |
| LOC725476 | mediator of RNA polymerase II transcription subunit 20 | 0.3869315 | 100.4815728 | 4.6443030 |
| LOC408797 | nidogen-2 | -0.1284676 | 100.2831060 | 7.3587475 |
| LOC102655980 | putative leucine-rich repeat-containing protein DDB_G0290503 | -0.1525881 | 100.1707242 | 8.1075786 |
| LOC551498 | uncharacterized LOC551498 | 0.1871480 | 100.0972679 | 6.0505640 |
| LOC726597 | zinc finger protein 729 | 0.0822514 | 100.0838508 | 2.2838323 |
| LOC412081 | uncharacterized LOC412081 | -0.2175505 | 99.6638900 | 6.2416848 |
| LOC413786 | netrin-A-like | -0.2353515 | 99.6461861 | 2.7498947 |
| LOC724292 | disks large 1 tumor suppressor protein | -0.1569333 | 99.5955862 | 6.8378581 |
| LOC551803 | homeotic protein spalt-major | -0.3248702 | 99.4393433 | 4.2820951 |
| LOC411126 | broad-complex core protein isoforms 1/2/3/4/5 | -0.0037559 | 99.4198113 | 4.9710136 |
| LOC726598 | putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX16 | 0.0633636 | 99.2196271 | 4.7845995 |
| LOC409321 | mothers against decapentaplegic homolog 4 | -0.0561316 | 99.2071747 | 5.6999397 |
| LOC409854 | nuclease-sensitive element-binding protein 1 | -0.1421870 | 98.9966066 | 11.8306614 |
| LOC551666 | double-stranded RNA-binding protein Staufen homolog 2 | -0.1598349 | 98.6149283 | 8.0413429 |
| LOC411412 | monocarboxylate transporter 12 | -0.1476822 | 98.4675175 | 6.6232885 |
| LOC410497 | guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1 | -0.4520863 | 98.4627611 | 8.7721209 |
| LOC413753 | uncharacterized LOC413753 | 0.1017182 | 98.4479830 | 6.1058259 |
| LOC102656313 | uncharacterized LOC102656313 | 0.1539984 | 98.4115877 | 3.7854107 |
| LOC551490 | collagen alpha chain CG42342-like | 0.1984650 | 98.2651853 | 4.9362961 |
| LOC725588 | uncharacterized LOC725588 | -0.1167686 | 98.2336375 | 5.4463410 |
| LOC726414 | protein windpipe | 0.0126706 | 97.9347924 | 6.8033234 |
| LOC100576814 | uncharacterized LOC100576814 | -0.0484071 | 97.9078450 | 5.7385206 |
| LOC410341 | RNA pseudouridylate synthase domain-containing protein 2-like | 0.1027422 | 97.8642194 | 7.6127803 |
| LOC100578484 | uncharacterized LOC100578484 | -0.4308903 | 97.6935204 | 3.7174717 |
| LOC409084 | arginine-glutamic acid dipeptide repeats protein | 0.1015114 | 97.6345106 | 7.0529367 |
| LOC413510 | SNF-related serine/threonine-protein kinase | -0.4616793 | 97.2485811 | 6.1178029 |
| LOC410009 | cadherin-related tumor suppressor | -0.0538562 | 97.1286432 | 4.7064674 |
| LOC724994 | uncharacterized LOC724994 | -0.3877284 | 97.0998116 | 5.1232352 |
| LOC410589 | semaphorin-5A | -0.2132407 | 97.0922990 | 5.7348606 |
| LOC550677 | protein mab-21 | -0.1942551 | 97.0824256 | 4.3618838 |
| LOC552140 | cleavage and polyadenylation specificity factor subunit 5 | 0.0018905 | 97.0470453 | 6.0686086 |
| LOC408464 | protein HGV2 | -0.0463707 | 96.9862221 | 7.4070198 |
| LOC100859932 | uncharacterized LOC100859932 | -0.5323630 | 96.8921500 | 5.5829083 |
| LOC551508 | vang-like protein 1 | 0.0288334 | 96.7164698 | 4.4654542 |
| LOC408780 | signal-induced proliferation-associated 1-like protein 2 | -0.2302824 | 96.5954687 | 5.6784463 |
| LOC410717 | serine/threonine-protein kinase MARK2 | 0.0691456 | 96.3128509 | 7.8858517 |
| LOC408676 | CREB-regulated transcription coactivator 1-like | -0.3399741 | 96.1517448 | 5.9040256 |
| LOC102654626 | E3 ubiquitin-protein ligase TRIM33-like | 0.0017721 | 96.0209363 | 4.7499163 |
| LOC411083 | sodium/potassium-transporting ATPase subunit alpha | -0.2275266 | 96.0026529 | 9.5302318 |
| LOC725706 | putative mediator of RNA polymerase II transcription subunit 26 | 0.2161382 | 95.8397916 | 5.5408681 |
| LOC413389 | dual specificity mitogen-activated protein kinase kinase hemipterous | -0.0624393 | 95.6804448 | 5.1162022 |
| LOC726999 | iroquois-class homeodomain protein IRX-6-like | 0.3913986 | 95.5736715 | 6.1868827 |
| LOC725936 | titin homolog | -0.2731564 | 95.5660892 | 8.9138561 |
| LOC409077 | aminopeptidase N | -0.1897237 | 95.2969125 | 3.6101165 |
| LOC727235 | protein enabled | -0.2250435 | 95.2717856 | 6.9391037 |
| LOC552571 | serine/threonine-protein kinase unc-51 | 0.1347330 | 95.2533992 | 6.6040294 |
| LOC107964589 | microtubule-associated protein futsch-like | -0.5278420 | 95.2346610 | 1.7595713 |
| LOC410487 | uncharacterized LOC410487 | 0.2453254 | 95.1535301 | 7.5478232 |
| LOC412088 | flocculation protein FLO11 | -0.4181336 | 95.1056534 | 3.7406964 |
| LOC410865 | uncharacterized LOC410865 | 0.0081008 | 95.0420091 | 4.3093938 |
| NFRKB | nuclear factor related to kappaB binding protein | 0.2117799 | 94.9110808 | 6.5180418 |
| LOC725043 | protein muscleblind-like | -0.3960769 | 94.6942142 | 5.5584046 |
| LOC726770 | caskin-1-like | 0.2829312 | 94.6526063 | 4.9808412 |
| LOC550708 | E3 ubiquitin-protein ligase MIB1 | 0.0463451 | 94.4394714 | 4.3309515 |
| LOC408304 | nuclear migration protein nudC | 0.1238248 | 94.3514432 | 8.9432369 |
| LOC409486 | RNA-binding protein 4.1-like | -0.0776616 | 94.2343335 | 9.4227994 |
| LOC107963986 | centrosomal protein of 162 kDa-like | -0.0463162 | 94.1381760 | 4.8607041 |
| LOC102655124 | zinc finger protein 664-like | 0.0585579 | 94.0516871 | 3.5656959 |
| LOC410600 | uncharacterized LOC410600 | -0.1070157 | 93.8946181 | 5.3512287 |
| LOC408520 | upstream activation factor subunit spp27 | -0.1192813 | 93.8720813 | 10.2796962 |
| LOC100578100 | uncharacterized LOC100578100 | 0.0984034 | 93.6758571 | 5.7741952 |
| LOC410852 | protein Fe65 homolog | -0.0423332 | 93.6265927 | 5.6532836 |
| LOC408889 | large proline-rich protein BAG6 | 0.2503131 | 93.5202949 | 8.8473176 |
| LOC411982 | E3 ubiquitin-protein ligase CBL | 0.1802755 | 93.3446909 | 4.5616151 |
| LOC724961 | protein drumstick | -0.4536448 | 93.2864886 | 5.8796102 |
| LOC409786 | jazigo | 0.0978396 | 93.1850415 | 4.8218296 |
| LOC724442 | dentin sialophosphoprotein-like | -0.0828015 | 93.1535625 | 5.8082554 |
| LOC413793 | enhancer of polycomb homolog 1 | 0.3113687 | 93.1391442 | 4.9404481 |
| LOC409904 | uncharacterized LOC409904 | -0.1522157 | 93.1373986 | 7.8975655 |
| LOC724510 | neuropathy target esterase sws | 0.2242325 | 93.1331390 | 7.4738516 |
| LOC100578334 | transcription factor 21 | -0.5620546 | 93.0549294 | 1.5471248 |
| LOC410649 | tyrosine-protein kinase Btk29A | -0.2520991 | 93.0470438 | 5.7940917 |
| LOC725679 | sex-lethal homolog | 0.0442368 | 93.0118446 | 6.6315683 |
| LOC406146 | hyaluronoglucosaminidase | -0.2044798 | 92.8395310 | 5.3571792 |
| LOC100578865 | uncharacterized LOC100578865 | 0.0911044 | 92.5777657 | 4.4928807 |
| LOC551746 | transcriptional activator cubitus interruptus | -0.1414739 | 92.4550618 | 3.6556996 |
| LOC724835 | protein eva-1 | -0.3294973 | 92.4094425 | 4.6605984 |
| LOC408779 | short stop | -0.2796358 | 92.1581436 | 9.7322910 |
| LOC100576619 | CUE domain-containing protein 2 | -0.0666750 | 92.1222143 | 4.1424216 |
| LOC413357 | ubiquitin carboxyl-terminal hydrolase 31-like | 0.1718905 | 91.9212051 | 5.8480830 |
| LOC724604 | uncharacterized LOC724604 | 0.0367066 | 91.6747337 | 6.5975572 |
| osp | outspread | 0.3289769 | 91.5495850 | 6.1000340 |
| LOC411881 | peregrin | 0.0144974 | 91.3649167 | 4.8398043 |
| LOC411385 | ester hydrolase C11orf54 homolog | -0.2471485 | 91.3631037 | 9.0382555 |
| LOC410918 | protein tramtrack, beta isoform | 0.1423989 | 91.3281414 | 8.8357585 |
| LOC410229 | slit homolog 2 protein | -0.2148706 | 90.9293017 | 3.0491946 |
| LOC409108 | uncharacterized LOC409108 | -0.4041611 | 90.9063479 | 4.3498842 |
| LOC410739 | teneurin-m | -0.3310801 | 90.8908118 | 7.6237404 |
| FAR1 | fatty acyl-CoA reductase 1 | -0.4171095 | 90.6046250 | 7.7220719 |
| LOC412993 | glutamate receptor ionotropic, kainate 2-like | -0.4974722 | 90.5160575 | 1.6089972 |
| LOC107964421 | probable G-protein coupled receptor Mth-like 5 | 0.4843112 | 90.5080439 | 3.3985985 |
| LOC411049 | glutamate receptor ionotropic, kainate 2 | -0.3009551 | 90.5054472 | 3.4899987 |
| LOC410040 | serine/arginine-rich splicing factor 1B | 0.2226734 | 90.4275468 | 6.3307257 |
| LOC410609 | disintegrin and metalloproteinase domain-containing protein 10-like | -0.5118183 | 90.3615482 | 5.6261559 |
| LOC100578824 | zinc finger protein ZIC 4-like | -0.1556254 | 90.2392207 | 3.4937380 |
| LOC725524 | uncharacterized protein DDB_G0283697 | -0.1372620 | 90.1841314 | 9.0425798 |
| LOC725264 | uncharacterized LOC725264 | -0.3593373 | 90.0676033 | 1.6519060 |
| LOC408519 | serine/threonine-protein kinase 10 | 0.2016724 | 89.9348246 | 7.2838277 |
| LOC408887 | ankyrin repeat and SAM domain-containing protein 1A-like | 0.0418267 | 89.9160795 | 4.6968568 |
| LOC409862 | serine/arginine-rich splicing factor 2 | 0.1890114 | 89.7675410 | 7.4610141 |
| LOC410018 | protein I’m not dead yet-like | 0.0027376 | 89.6573741 | 5.7213637 |
| LOC100577872 | uncharacterized LOC100577872 | 0.0821666 | 89.6571563 | 4.5346859 |
| LOC410235 | slit homolog 2 protein | -0.0404462 | 89.6054753 | 3.3637413 |
| LOC410685 | inactive tyrosine-protein kinase 7-like | -0.2473641 | 89.5169222 | 4.6113364 |
| LOC409707 | cell adhesion molecule 4-like | -0.0173225 | 89.4995987 | 5.0006872 |
| LOC410895 | pleckstrin homology-like domain family B member 1 | 0.0923866 | 89.4112069 | 6.3772795 |
| LOC102656822 | uncharacterized LOC102656822 | -0.3983536 | 89.3837753 | 0.7949286 |
| LOC100578253 | Golgi integral membrane protein 4-like | 0.1385018 | 89.3785159 | 6.7462782 |
| LOC726793 | uncharacterized LOC726793 | -0.6774552 | 89.3297027 | 2.2033008 |
| LOC726273 | ralBP1-associated Eps domain-containing protein 1 | 0.1623819 | 89.3060736 | 4.8497779 |
| LOC411248 | uncharacterized LOC411248 | -0.5352627 | 89.2585883 | 2.5353806 |
| LOC727121 | uncharacterized LOC727121 | 0.3120610 | 89.2406386 | 6.0717028 |
| LOC408945 | sorting nexin-27 | -0.2669812 | 89.1755297 | 5.6806272 |
| LOC408598 | MAGUK p55 subfamily member 7 | -0.3080748 | 89.0727331 | 4.3112808 |
| LOC409383 | matrix metalloproteinase-2 | -0.1312782 | 89.0562210 | 5.8200748 |
| LOC725816 | homocysteine S-methyltransferase YbgG-like | -0.2669639 | 88.9600087 | 5.9622061 |
| LOC107965722 | uncharacterized LOC107965722 | -0.2558694 | 88.9147799 | 2.9186265 |
| LOC411019 | neuropilin and tolloid-like protein 2 | -0.2971900 | 88.8071778 | 3.8467483 |
| LOC726524 | chromodomain-helicase-DNA-binding protein 7 | -0.0898497 | 88.6117337 | 9.6202023 |
| Psq | pipsqueak | 0.0194339 | 88.5977359 | 4.5621526 |
| LOC100576449 | protein patched | -0.0224066 | 88.3462357 | 4.3519275 |
| LOC409151 | ataxin-2-like protein | 0.1008395 | 88.3424345 | 7.1353574 |
| LOC413266 | obg-like ATPase 1 | 0.1318148 | 88.2103852 | 7.7787166 |
| LOC409050 | segment polarity protein dishevelled homolog DVL-3 | 0.1930525 | 88.1446672 | 6.0205655 |
| LOC411820 | dual specificity protein phosphatase Mpk3 | -0.1169335 | 87.9757824 | 6.1386964 |
| LOC411068 | kinesin 4A | 0.2180683 | 87.6798717 | 5.9465703 |
| LOC409322 | uncharacterized LOC409322 | -0.0502979 | 87.5769730 | 7.0956269 |
| LOC409337 | zinc finger MIZ domain-containing protein 1 | -0.0767009 | 87.5059199 | 4.6851436 |
| LOC413423 | hemicentin-2 | 0.1050932 | 87.4587486 | 5.2897971 |
| LOC412092 | myosin heavy chain, non-muscle | 0.1355282 | 87.3924037 | 7.9774470 |
| LOC412491 | double-stranded RNA-specific editase 1-like | 0.1769780 | 87.2030887 | 6.8925191 |
| LOC552090 | transcription factor GAGA | 0.1463265 | 87.1824707 | 4.4901520 |
| LOC100576471 | uncharacterized LOC100576471 | -0.5327846 | 87.1623167 | 2.2920534 |
| LOC102654448 | endochitinase A-like | -0.2828872 | 87.1456159 | 4.4929361 |
| LOC409131 | monocarboxylate transporter 12-like | -0.2479185 | 87.1336843 | 2.1990025 |
| LOC551170 | dumpy | 0.0228967 | 87.0759802 | 7.6353633 |
| LOC413159 | potassium channel subfamily T member 2 | 0.2738889 | 86.9542647 | 2.6842947 |
| LOC726829 | uncharacterized LOC726829 | -0.5799285 | 86.9273160 | 3.9778631 |
| LOC725485 | uncharacterized LOC725485 | -0.3154135 | 86.9266971 | 6.4819286 |
| LOC551830 | ral GTPase-activating protein subunit alpha-1 | 0.1613693 | 86.8785820 | 5.9885152 |
| LOC100577704 | uncharacterized LOC100577704 | -0.1920636 | 86.8394500 | 4.5761993 |
| LOC408297 | uncharacterized LOC408297 | -0.4132617 | 86.7605199 | 4.1650925 |
| LOC411277 | uncharacterized LOC411277 | 0.0052506 | 86.6485243 | 7.2804438 |
| LOC100578698 | uncharacterized LOC100578698 | -0.3489847 | 86.6124863 | 2.0187795 |
| LOC413946 | myocyte-specific enhancer factor 2 | 0.3020026 | 86.4104201 | 5.8819237 |
| LOC408438 | insulin receptor substrate 1-B | -0.2199715 | 86.3382369 | 5.5787144 |
| LOC552576 | tyrosine-protein kinase PR2 | 0.0780317 | 86.2704789 | 5.3398998 |
| LOC409665 | LIM domain and actin-binding protein 1 | 0.2223950 | 86.0786952 | 7.4586171 |
| LOC409497 | zinc finger CCCH domain-containing protein 18-like | 0.0197823 | 85.9867060 | 7.1152889 |
| LOC414014 | cold shock domain-containing protein E1 | 0.0272410 | 85.4439900 | 7.3866261 |
| LOC410567 | zinc transporter ZIP11 | 0.1997340 | 85.3604755 | 6.2300509 |
| LOC413739 | synaptic vesicle glycoprotein 2C-like | -0.2306422 | 85.3602524 | 6.4151943 |
| LOC410643 | homeobox protein abdominal-A homolog | -0.1199945 | 85.2981354 | 6.5666014 |
| LOC551375 | receptor-type tyrosine-protein phosphatase N2 | -0.3057087 | 85.2683191 | 3.2835026 |
| LOC413754 | polycomb protein Sfmbt | 0.2106695 | 85.2178737 | 4.8798213 |
| LOC413029 | serine/threonine-protein kinase OSR1-like | 0.2579320 | 85.1676261 | 6.7535903 |
| LOC552513 | neural cell adhesion molecule 2 | -0.8058296 | 85.1549018 | 3.6775495 |
| LOC408826 | dystroglycan | -0.1883098 | 85.0336080 | 7.6521369 |
| LOC552578 | uncharacterized LOC552578 | -0.0603114 | 84.9467269 | 4.8071273 |
| LOC408311 | catenin delta-2 | -0.1732621 | 84.9019022 | 7.1455967 |
| LOC408915 | protein couch potato-like | -0.1539225 | 84.8911117 | 3.6629231 |
| LOC408406 | cyclin-dependent kinase 4 | 0.0529732 | 84.6959762 | 2.1789958 |
| LOC411772 | Y+L amino acid transporter 2 | 0.4519793 | 84.6258485 | 4.1482841 |
| LOC724385 | uncharacterized LOC724385 | -0.0119847 | 84.6085523 | 3.7922984 |
| LOC409573 | zinc finger protein 2 homolog | -0.0498359 | 84.5907276 | 6.8967939 |
| LOC410956 | serine/threonine-protein kinase NLK | -0.0639494 | 84.5783283 | 6.7886246 |
| LOC412865 | collagen alpha-2(IX) chain | 0.0510776 | 84.5627809 | 6.0464513 |
| LOC408359 | MAGUK p55 subfamily member 6 | 0.2499465 | 84.4695965 | 5.6311178 |
| LOC409020 | uncharacterized LOC409020 | -0.0121885 | 84.1759604 | 5.3119699 |
| LOC413071 | eye-specific diacylglycerol kinase | -0.6659385 | 83.8220328 | 4.0097146 |
| LOC412739 | roundabout homolog 2 | 0.0953356 | 83.6315733 | 4.9396425 |
| LOC552017 | alpha-catulin | -0.0840459 | 83.0268064 | 3.3565767 |
| LOC412391 | transient receptor potential cation channel, subfamily M, member 3 | 0.2488120 | 82.9709678 | 4.9864933 |
| LOC551016 | midasin | 0.2679065 | 82.9706738 | 7.9329789 |
| LOC725372 | uncharacterized LOC725372 | 0.1829176 | 82.8346586 | 4.6385577 |
| LOC551628 | protein borderless | -0.4579497 | 82.4802207 | 3.3892141 |
| LOC100578976 | decorin | -0.0576529 | 82.3750043 | 5.2451182 |
| LOC551881 | ATP-dependent helicase brm | -0.1310104 | 82.3634700 | 8.5734372 |
| LOC724402 | uncharacterized LOC724402 | -0.1998879 | 82.2008145 | 8.4581664 |
| LOC413623 | kelch-like protein diablo | 0.3026294 | 82.1704443 | 5.3419587 |
| LOC413870 | suppressor of hairless protein | 0.2642780 | 82.0240328 | 4.2524679 |
| LOC724640 | nuclear receptor subfamily 1 group D member 2 | -0.3741046 | 81.8818185 | 3.0125171 |
| LOC551279 | zinc finger CCCH domain-containing protein 11A-like | -0.0299283 | 81.8724907 | 6.6560068 |
| LOC724859 | myosin 9 | -0.0362355 | 81.8682918 | 5.1716960 |
| LOC408896 | semaphorin-2A | 0.4419084 | 81.8175535 | 5.6384393 |
| LOC410178 | disks large homolog 5 | 0.0940216 | 81.6282206 | 5.6982009 |
| LOC409283 | splicing factor, arginine/serine-rich 15 | 0.2223338 | 81.5985270 | 7.0443042 |
| LOC726378 | anaphase-promoting complex subunit 11-like | -0.0257733 | 81.5769178 | 4.2810930 |
| LOC409255 | active breakpoint cluster region-related protein | 0.1076241 | 81.5559943 | 5.0994804 |
| LOC552414 | protein disabled | -0.2057667 | 81.3177754 | 1.3627238 |
| LOC726657 | transcription cofactor vestigial-like protein 4 | -0.1326521 | 81.2074617 | 4.8550111 |
| LOC413259 | neurogenic protein big brain | -0.0185865 | 81.1772618 | 3.0608416 |
| LOC102656134 | transcriptional adapter 2B | -0.1048474 | 81.0486212 | 5.6082581 |
| LOC412763 | uncharacterized LOC412763 | 0.0682219 | 80.9714534 | 7.1003718 |
| 18-w | 18-wheeler | -0.3663731 | 80.7452108 | 2.4764936 |
| LOC410406 | zinc metalloproteinase nas-13 | -0.1475549 | 80.7091338 | 3.1838420 |
| LOC408541 | negative elongation factor A | 0.2201983 | 80.6837424 | 5.2388174 |
| LOC408276 | ATP-dependent RNA helicase bel | 0.1412147 | 80.6132297 | 9.0656915 |
| LOC409950 | fibrillin-1-like | 0.1824793 | 80.4092690 | 5.3936785 |
| LOC412917 | probable serine/threonine-protein kinase dyrk2 | 0.2188102 | 80.3501279 | 4.9520518 |
| LOC725697 | protein dead ringer-like | -0.4915857 | 80.3485266 | 1.1243560 |
| LOC724853 | probable G-protein coupled receptor Mth-like 1 | -0.0596812 | 80.3411953 | 4.3092403 |
| LOC409245 | beta-1,4-glucuronyltransferase 1 | 0.1597404 | 80.3151313 | 5.2455858 |
| LOC408554 | neural-cadherin | -0.5483832 | 80.2404423 | 4.4769145 |
| LOC100578669 | uncharacterized LOC100578669 | -0.3733159 | 80.2329694 | 3.2096677 |
| LOC107964574 | uncharacterized LOC107964574 | -0.1861364 | 79.9478052 | 1.8715749 |
| LOC726461 | SH3 and multiple ankyrin repeat domains protein 1 | 0.3956742 | 79.9243748 | 6.0946785 |
| LOC409382 | E3 ubiquitin-protein ligase TRIP12 | 0.2238613 | 79.9181563 | 7.6623201 |
| LOC725551 | high mobility group protein DSP1 | -0.2230998 | 79.7065604 | 8.5917531 |
| aub | aubergine | -0.0157342 | 79.6229328 | 5.6636168 |
| LOC726991 | kinesin light chain | 0.3130791 | 79.5933058 | 6.6850166 |
| LOC725131 | microtubule-associated protein futsch | -0.0636503 | 79.5223824 | 8.6286796 |
| LOC413906 | monocarboxylate transporter 10 | 0.1240495 | 79.4296248 | 4.8814651 |
| LOC726024 | WW domain-binding protein 4 | -0.1079678 | 79.3478071 | 4.4466430 |
| LOC551663 | disintegrin and metalloproteinase domain-containing protein 11 | -0.1815539 | 79.3430115 | 4.0111753 |
| LOC552668 | putative vacuolar protein sorting-associated protein TDA6 | 0.1679555 | 78.9964265 | 5.8610490 |
| LOC410151 | retinal homeobox protein Rx2 | -0.4807428 | 78.9600357 | 4.3911779 |
| LOC408822 | uncharacterized LOC408822 | -0.6021376 | 78.8233360 | 2.5333285 |
| LOC408398 | cytochrome P450 306a1 | 0.1082053 | 78.7967576 | 4.8916095 |
| LOC724727 | homeobox protein PKNOX2-like | -0.0548123 | 78.7421457 | 6.1570444 |
| LOC102654959 | myb-like protein Q | -0.0773147 | 78.6107269 | 5.1998112 |
| LOC100577629 | uncharacterized LOC100577629 | -0.0626387 | 78.5793146 | 2.0335119 |
| LOC413171 | myosin-I heavy chain | 0.1780141 | 78.5564689 | 4.6236838 |
| LOC551883 | voltage-dependent T-type calcium channel subunit alpha-1G | -0.0366140 | 78.5497654 | 3.5723386 |
| LOC727000 | protein sprint | 0.2934656 | 78.5194626 | 5.7515220 |
| LOC102656552 | hypertrehalosaemic prohormone-like | -0.4040616 | 78.4207663 | 4.9243859 |
| LOC410190 | tyrosine-protein kinase Dnt | -0.4529299 | 78.4026867 | 3.1014254 |
| LOC411673 | dystrobrevin beta | -0.0349788 | 78.3046459 | 4.3027112 |
| LOC100579056 | zinc finger protein 1-like | -0.6637560 | 78.2768210 | 1.5851324 |
| LOC408579 | thrombospondin type-1 domain-containing protein 4-like | 0.0456226 | 78.2030034 | 5.1355241 |
| LOC410802 | microphthalmia-associated transcription factor | 0.4275840 | 78.1580721 | 6.7840646 |
| LOC100578939 | single Ig IL-1-related receptor-like | 0.2544427 | 78.0889447 | 4.7006258 |
| LOC724498 | uncharacterized LOC724498 | -0.2968803 | 77.9958975 | 5.2347641 |
| LOC107964317 | uncharacterized LOC107964317 | -0.0890478 | 77.8116664 | 2.8461648 |
| LOC411744 | spectrin beta chain | -0.0091374 | 77.7062902 | 9.4138166 |
| LOC107964889 | uncharacterized LOC107964889 | -0.2004593 | 77.6540789 | 0.4566408 |
| LOC100577778 | uncharacterized LOC100577778 | -0.2818453 | 77.4711173 | 0.9614866 |
| LOC100578300 | uncharacterized LOC100578300 | 0.0977170 | 77.3693483 | 3.9427109 |
| LOC409965 | cyclin-dependent kinase 12 | 0.1189893 | 77.3574559 | 7.8229124 |
| LOC410758 | zinc finger protein 36, C3H1 type-like 3 | -0.4512304 | 77.2053069 | 5.8291824 |
| LOC726254 | E3 ubiquitin-protein ligase HECTD1 | 0.2278041 | 77.0073676 | 7.8711469 |
| LOC551733 | beta-amyloid-like protein | -0.0584289 | 76.8458922 | 7.3576154 |
| LOC413874 | probable ATP-dependent RNA helicase DDX31 | -0.0800326 | 76.8171384 | 6.6047564 |
| LOC409753 | RING finger protein unkempt homolog | 0.1131314 | 76.7268076 | 4.6482582 |
| LOC412132 | serine/threonine-protein kinase Genghis Khan | 0.2110877 | 76.7043918 | 6.8540813 |
| LOC724592 | calmodulin-binding transcription activator 2 | -0.0762776 | 76.6492838 | 5.7155526 |
| LOC409783 | uncharacterized LOC409783 | 0.1388945 | 76.5446754 | 4.3770067 |
| LOC413837 | kinesin 3B | -0.2585923 | 76.4272744 | 5.2157211 |
| LOC411219 | MTSS1-like protein | -0.0092603 | 76.3939784 | 4.6205683 |
| LOC408343 | potassium voltage-gated channel protein Shaker | -0.4163471 | 76.2341824 | 4.6248792 |
| LOC409142 | sodium- and chloride-dependent transporter XTRP3 | -0.2759273 | 76.1928842 | 5.3828603 |
| LOC410505 | E3 ubiquitin-protein ligase RING1 | -0.2307074 | 76.1708832 | 5.4051597 |
| LOC408857 | nephrin-like | 0.0377403 | 75.9999627 | 3.1714474 |
| LOC724851 | LIM domain only protein 3-like | -0.2231078 | 75.9793182 | 3.3987592 |
| uzip | unzipped | -0.1386603 | 75.9225358 | 4.0929113 |
| LOC552227 | translocon-associated protein subunit delta | -0.2567532 | 75.8652350 | 7.5011617 |
| LOC550899 | UPF0769 protein C21orf59 homolog | -0.5812724 | 75.8355075 | 4.0546965 |
| LOC100577587 | cytospin-A-like | 0.1047996 | 75.7079859 | 6.2380400 |
| LOC550829 | DNA-directed RNA polymerase II subunit RPB1 | 0.2678408 | 75.6765714 | 6.5766936 |
| LOC724172 | neurobeachin | -0.0359231 | 75.6381017 | 8.4788145 |
| LOC412256 | nucleosome-remodeling factor subunit NURF301 | -0.1893814 | 75.6368873 | 8.2929118 |
| LOC409722 | basement membrane-specific heparan sulfate proteoglycan core protein | -0.1889219 | 75.5776774 | 8.7682182 |
| LOC552577 | junctophilin-1-like | -0.3768070 | 75.4428236 | 4.1210469 |
| LOC100576369 | ets DNA-binding protein pokkuri | 0.3910449 | 75.4058179 | 6.9842697 |
| LOC409933 | glucose transporter type 1 | -0.2974367 | 75.3575786 | 3.5450098 |
| LOC409695 | uncharacterized LOC409695 | -0.2264386 | 75.3230869 | 2.8667041 |
| LOC551831 | histone deacetylase complex subunit SAP30 homolog | -0.0975198 | 75.0762011 | 4.4727711 |
| LOC408543 | RING finger protein 44 | -0.3079093 | 75.0668521 | 5.5104719 |
| LOC724607 | protein kinase C-like | -0.4543411 | 74.7283885 | 2.9312220 |
| LOC100577945 | furin-like protease 1 | 0.2141052 | 74.6532303 | 5.3318326 |
| LOC726547 | protein abrupt | -0.4107551 | 74.6178883 | 8.1896364 |
| LOC100578515 | uncharacterized LOC100578515 | 0.0602790 | 74.4384789 | 5.7012371 |
| LOC408594 | triple functional domain protein | 0.0035245 | 74.4167891 | 8.1028258 |
| LOC408694 | plastin-2 | 0.0420804 | 74.4054051 | 7.0359298 |
| LOC410785 | plexin-A4 | -0.1898062 | 74.3631885 | 7.7395034 |
| LOC725189 | protein bric-a-brac 1-like | -0.5789361 | 74.3301443 | 6.9850965 |
| LOC725329 | UPF0489 protein C5orf22 homolog | -0.0124366 | 74.2747677 | 3.7457018 |
| LOC411116 | nephrin | -0.0610984 | 74.1909333 | 1.8496322 |
| LOC412475 | knirps-related protein | -0.2834504 | 73.9437856 | 3.6627598 |
| LOC408801 | protein split ends | 0.1498335 | 73.9377789 | 7.5892397 |
| LOC725651 | uncharacterized LOC725651 | -0.2900388 | 73.8981733 | 4.3043280 |
| LOC408337 | uncharacterized LOC408337 | 0.0237922 | 73.8118279 | 7.9178874 |
| LOC411452 | band 4.1-like protein 4A | -0.3134473 | 73.7212275 | 4.0055160 |
| LOC413267 | protein kintoun | 0.1247945 | 73.6020429 | 5.5020656 |
| LOC413248 | uncharacterized LOC413248 | 0.4231738 | 73.5338583 | 3.6133460 |
| LOC411361 | protein tramtrack, beta isoform-like | 0.0640562 | 73.4962669 | 5.4022955 |
| LOC410236 | kyphoscoliosis peptidase | 0.3858155 | 73.2572445 | 6.2234341 |
| LOC406118 | DDB1- and CUL4-associated factor 11 | 0.1058394 | 73.2111924 | 5.5869440 |
| LOC408408 | uncharacterized LOC408408 | -0.2035627 | 73.1666447 | 6.6089184 |
| LOC408393 | agrin-like | -0.8007218 | 73.1598147 | 4.0434722 |
| LOC726121 | golgin subfamily A member 6-like protein 22 | -0.6693489 | 73.1244594 | 3.5625770 |
| LOC725003 | protein sister of odd and bowel | -0.2566470 | 73.0008165 | 2.4331016 |
| LOC410015 | protein LSM14 homolog A | 0.0090171 | 72.9165219 | 8.8585227 |
| LOC410184 | F-box-like/WD repeat-containing protein TBL1XR1 | 0.2728665 | 72.9082862 | 6.2851840 |
| LOC725408 | TSC22 domain family protein 1 | -0.1360257 | 72.8323102 | 3.3658231 |
| LOC409733 | transcriptional activator Myb | -0.3079746 | 72.7304376 | 4.8717666 |
| LOC727399 | protein numb | -0.2053830 | 72.5724524 | 7.3135472 |
| LOC552258 | hippocampus abundant transcript 1 protein-like | 0.0335403 | 72.4918368 | 7.1618809 |
| LOC413382 | SAM and SH3 domain-containing protein 1 | -0.0126662 | 72.3378502 | 4.5631817 |
| LOC726548 | regulator of G-protein signaling loco | -0.0728784 | 72.2721629 | 5.7858924 |
| LOC100578810 | facilitated trehalose transporter Tret1-2 homolog | -0.5540841 | 72.1701143 | 4.3201614 |
| LOC411678 | serine/threonine-protein kinase Warts | 0.2528733 | 72.0674204 | 5.5296339 |
| LOC411155 | teneurin-a | -0.7154049 | 71.9806273 | 5.1516365 |
| LOC413633 | serine/threonine-protein kinase BRSK2 | -0.0469692 | 71.9683054 | 2.4538816 |
| LOC413616 | tyrosine-protein kinase transmembrane receptor Ror | 0.4303018 | 71.8425769 | 3.1067774 |
| LOC552619 | hepatocyte nuclear factor 6 | -0.7441128 | 71.7138414 | 2.3069077 |
| LOC724965 | dnaJ homolog subfamily C member 5 | 0.2462099 | 71.5523566 | 4.5091099 |
| LOC409676 | kinesin 2A | -0.2101121 | 71.1913206 | 3.6919181 |
| LOC408294 | protein FAM76A | -0.0425137 | 71.0678970 | 5.5325083 |
| LOC409686 | NACHT domain- and WD repeat-containing protein 1 | 0.0078183 | 71.0042462 | 5.4496595 |
| LOC725393 | protein TIS11 | -0.4394238 | 70.8878425 | 7.8298466 |
| LOC408331 | histone deacetylase 5 | -0.2104467 | 70.7168227 | 7.7881985 |
| LOC410796 | histone lysine demethylase PHF8-like | 0.1022625 | 70.3673677 | 4.2433744 |
| LOC413620 | uncharacterized LOC413620 | -0.0325861 | 70.3592775 | 7.0120085 |
| LOC410696 | ADAMTS-like protein 3 | -0.2686186 | 70.2979819 | 2.2441262 |
| LOC413789 | elongation of very long chain fatty acids protein AAEL008004-like | -0.2823940 | 70.2420335 | 7.4620305 |
| LOC411270 | uncharacterized LOC411270 | 0.1731008 | 70.2029165 | 4.1256796 |
| LOC726294 | orcokinin peptides | -0.5533679 | 70.1038506 | 2.2723415 |
| LOC409078 | uncharacterized LOC409078 | -0.3008182 | 69.9808873 | 2.0852573 |
| LOC726302 | histone-lysine N-methyltransferase 2D-like | -0.5268607 | 69.9626822 | 5.4352664 |
| LOC551391 | U1 small nuclear ribonucleoprotein 70 kDa | -0.0321360 | 69.9124872 | 8.1161862 |
| LOC410686 | semaphorin-1A | -0.3491374 | 69.8299692 | 4.4377067 |
| LOC411980 | death-associated protein kinase 1-like | -0.0387595 | 69.8247675 | 4.6451297 |
| LOC725870 | slit homolog 3 protein-like | -0.6531008 | 69.5789693 | 3.7975550 |
| LOC410274 | transcription elongation factor SPT6-like | 0.1903456 | 69.5670440 | 6.8086882 |
| LOC100577272 | uncharacterized LOC100577272 | 0.1397515 | 69.3882117 | 5.7596354 |
| LOC552634 | zinc transporter 1 | 0.0388280 | 69.3521046 | 6.5324670 |
| LOC408653 | calcium-dependent secretion activator | -0.2206032 | 69.3341212 | 4.4922904 |
| LOC409433 | protein RCC2 homolog | -0.1517334 | 69.1584180 | 5.6033321 |
| LOC100577928 | SLIT-ROBO Rho GTPase-activating protein 1-like | -0.1449845 | 69.0515518 | 6.9473873 |
| LOC725098 | tight junction protein ZO-1 | -0.0228607 | 69.0283881 | 5.5497016 |
| LOC412101 | uncharacterized LOC412101 | -0.4832374 | 68.9241653 | 5.4987484 |
| LOC412647 | septin-2 | -0.4427604 | 68.9041752 | 3.8730928 |
| LOC411490 | probable beta-hexosaminidase fdl | 0.4239668 | 68.7612975 | 6.6310339 |
| LOC413955 | tetratricopeptide repeat protein 28 | 0.3225772 | 68.7605884 | 7.0118198 |
| LOC408620 | RNA-binding protein 42 | 0.1452467 | 68.6771158 | 4.9694560 |
| LOC409230 | arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 2 | 0.0639892 | 68.5990931 | 4.1560555 |
| LOC409748 | protein kinase C and casein kinase substrate in neurons protein 1 | 0.2426008 | 68.4818026 | 6.3446988 |
| LOC552062 | protein argonaute-2 | 0.0546222 | 68.3234177 | 4.9521027 |
| LOC410371 | calcium-transporting ATPase sarcoplasmic/endoplasmic reticulum type | -0.0303255 | 68.2741632 | 8.6629990 |
| LOC411525 | choline/ethanolamine kinase | 0.0167083 | 68.2660857 | 7.7358167 |
| LOC552221 | F-BAR domain only protein 2 | 0.0044267 | 68.2011541 | 6.0940273 |
| LOC552243 | mucin-5AC | -0.2662960 | 68.1987711 | 3.5381699 |
| LOC107965142 | serine/threonine-protein kinase CBK1-like | -0.3481694 | 68.1792053 | 0.8672593 |
| LOC102653940 | cyclin-dependent kinase inhibitor 1 | -0.2467268 | 68.1587941 | 6.0692684 |
| LOC409606 | uncharacterized LOC409606 | -0.0008752 | 68.1410671 | 5.1682519 |
| LOC409764 | uncharacterized LOC409764 | -0.2013632 | 68.0428147 | 4.9199544 |
| Dscam | Down syndrome cell adhesion molecule | -0.2753116 | 68.0253266 | 6.6397434 |
| LOC411150 | chromatin assembly factor 1 subunit A | -0.0331694 | 67.9740381 | 6.8263600 |
| LOC551614 | calpain-D | 0.1912590 | 67.8430979 | 5.1299681 |
| LOC410655 | neurotrimin-like | -0.6919154 | 67.8218102 | 1.0382980 |
| LOC100578597 | uncharacterized LOC100578597 | -0.1081198 | 67.7474700 | 6.9504786 |
| LOC409752 | uncharacterized LOC409752 | -0.0413529 | 67.5008319 | 5.6992247 |
| LOC551086 | protein abrupt | 0.0740207 | 67.4956020 | 7.4340287 |
| LOC410174 | cyclin-T | 0.0376299 | 67.3779138 | 7.0489374 |
| LOC411282 | basic-leucine zipper transcription factor A | -0.3868897 | 67.3298854 | 4.9083911 |
| LOC552303 | RNA-binding protein cabeza-like | -0.0261250 | 67.3145274 | 9.0817826 |
| LOC726050 | forkhead box protein K2-like | -0.8017227 | 67.2680041 | 1.3271564 |
| LOC408882 | septin-2 | -0.2008167 | 67.2406651 | 5.8226290 |
| LOC409704 | poly(A) polymerase type 3 | -0.2289110 | 67.1877815 | 6.0805314 |
| LOC409957 | synaptotagmin 4 | -0.0957283 | 67.1019911 | 2.7342598 |
| LOC724852 | lipoma HMGIC fusion partner-like | -0.1864832 | 67.0605694 | 1.7930456 |
| LOC413472 | innexin shaking-B | -0.2149918 | 67.0004667 | 2.7576686 |
| LOC409430 | serine/threonine-protein phosphatase alpha-2 isoform | 0.0837559 | 66.9215090 | 8.1010209 |
| LOC725591 | protein crumbs | 0.2857072 | 66.7941960 | 5.6389386 |
| LOC413501 | protein Wnt-6 | -0.2460966 | 66.6811782 | 2.4645348 |
| LOC100576146 | aladin-like | 0.2780639 | 66.4840801 | 4.7456888 |
| LOC410823 | transient receptor potential-gamma protein | -0.5101210 | 66.4486857 | 4.2935154 |
| LOC410920 | putative inorganic phosphate cotransporter | -0.5817519 | 66.3805555 | 4.4426677 |
| LOC100578467 | protein Star-like | -0.2443157 | 66.3373387 | 5.0686682 |
| LOC411694 | E3 ubiquitin-protein ligase KCMF1-like | 0.2834967 | 66.2965593 | 6.1822548 |
| LOC100578369 | poly(U)-binding-splicing factor half pint-like | -0.2443875 | 66.2459391 | 5.3219993 |
| LOC412191 | protein diaphanous | -0.0900610 | 66.2393633 | 5.9965045 |
| LOC552340 | glypican-4 | -0.4059310 | 66.2081547 | 3.8969039 |
| LOC724465 | enhancer of split mbeta protein-like | 0.1085007 | 66.1600538 | 2.1574427 |
| LOC412853 | brain tumor protein | 0.1908068 | 65.8030785 | 3.3761095 |
| LOC409543 | importin subunit alpha-7 | 0.1685357 | 65.4342568 | 7.4938962 |
| LOC413260 | neuroligin-4, Y-linked | -0.2555092 | 65.4319056 | 4.8877724 |
| LOC551577 | Down syndrome cell adhesion molecule-like protein Dscam2 | -0.0293041 | 65.2457630 | 2.4295811 |
| LOC413466 | zinc finger protein 423 | 0.1541197 | 65.1153541 | 2.0461229 |
| LOC410820 | otopetrin-2 | -0.1971807 | 64.9181074 | 3.7060317 |
| LOC411157 | fat-like cadherin-related tumor suppressor homolog | -0.1277684 | 64.8670768 | 6.7425301 |
| LOC724195 | B-cell receptor CD22 | -0.5299720 | 64.8593444 | 3.3829166 |
| Ubx | ultrabithorax | -0.4670875 | 64.8251967 | 5.0472135 |
| LOC413021 | papilin | -0.5854611 | 64.7211352 | 7.9461707 |
| LOC724613 | uncharacterized LOC724613 | 0.3062650 | 64.6922409 | 6.4653888 |
| LOC724338 | OTU domain-containing protein 5-B | 0.3935120 | 64.6623273 | 5.5979623 |
| LOC725278 | protein bric-a-brac 2-like | -0.6265110 | 64.5765500 | 4.7259339 |
| LOC412059 | F-box only protein 11 | -0.0784621 | 64.4682680 | 6.7603336 |
| LOC408836 | unc-112-related protein | 0.2191282 | 64.3080635 | 7.0739267 |
| LOC725511 | protein Wnt-11b | -0.0107725 | 64.2802124 | 2.4952176 |
| LOC408874 | uncharacterized LOC408874 | 0.2614039 | 64.1767121 | 6.5790738 |
| LOC725782 | alpha-actinin, sarcomeric | -0.0345969 | 64.0967987 | 9.3772465 |
| LOC409274 | rab11 family-interacting protein 4 | 0.0820368 | 64.0949710 | 5.2786023 |
| LOC411245 | dedicator of cytokinesis protein 7 | 0.2196673 | 64.0335871 | 4.8161921 |
| LOC552267 | zinc finger CCCH domain-containing protein 10-like | 0.0254335 | 63.9280006 | 5.0874518 |
| LOC408688 | Down syndrome cell adhesion molecule-like protein Dscam2 | 0.0925849 | 63.8886620 | 4.0127396 |
| LOC411113 | solute carrier family 12 member 4 | 0.4361260 | 63.6771144 | 7.6298701 |
| LOC100577139 | AF4/FMR2 family member 4 | -0.3382389 | 63.3556049 | 7.2682024 |
| LOC724660 | protein furry | 0.1116214 | 63.0112461 | 6.3965665 |
| LOC409692 | disintegrin and metalloproteinase domain-containing protein 10-like | -0.6155818 | 63.0107387 | 1.2357964 |
| LOC410498 | potassium voltage-gated channel subfamily H member 6 | -0.8490868 | 62.9355298 | 4.6521988 |
| LOC100576972 | uncharacterized LOC100576972 | 0.0048015 | 62.7737162 | 4.9704061 |
| LOC411070 | histone-lysine N-methyltransferase, H3 lysine-79 specific | 0.1305640 | 62.7680008 | 6.0779984 |
| Cac | cacophony | -0.4666794 | 62.5194464 | 3.3066252 |
| LOC725590 | homeobox protein B-H2-like | -0.4897261 | 62.4715236 | 2.6063088 |
| LOC409981 | titin homolog | -0.7134098 | 62.4311809 | 4.8524857 |
| LOC413047 | venom carboxylesterase-6-like | -0.1653763 | 62.3311553 | 3.9125085 |
| LOC725757 | nuclear transcription factor Y subunit alpha | 0.1779769 | 62.0037337 | 4.9424262 |
| LOC410191 | ring canal kelch homolog | 0.2353473 | 61.9256926 | 3.7982215 |
| LOC724765 | protein embryonic gonad | -0.5239158 | 61.6158920 | 5.3884144 |
| LOC408761 | uncharacterized LOC408761 | 0.2018460 | 61.5899094 | 5.8947357 |
| LOC551591 | carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 1 | 0.0790051 | 61.5739480 | 4.5139580 |
| LOC410925 | hormone receptor 4 | -0.4677038 | 61.5437482 | 5.8673407 |
| LOC726307 | serine-rich adhesin for platelets | 0.2292660 | 61.4652612 | 5.7540481 |
| LOC411843 | COP9 signalosome complex subunit 7b | -0.1189226 | 61.4337935 | 5.4716599 |
| LOC552187 | leucine-rich repeat-containing protein 4 | -0.5348607 | 61.3570240 | 1.9890605 |
| LOC724159 | histone acetyltransferase KAT6B | -0.2097423 | 61.3407700 | 8.9164220 |
| LOC102655329 | 14-3-3 protein zeta | -0.0009437 | 61.3127921 | 11.2061237 |
| LOC725780 | ubiquitin carboxyl-terminal hydrolase calypso | -0.2295352 | 61.0455828 | 4.6961268 |
| LOC551653 | solute carrier family 41 member 1-like | -0.1008999 | 60.8348392 | 5.9376084 |
| AChE-2 | acetylcholinesterase 2 | -0.5971339 | 60.7728363 | 5.0988658 |
| LOC725775 | uncharacterized LOC725775 | -0.3575147 | 60.7273030 | 4.4337380 |
| LOC408447 | neurotactin | -0.1397812 | 60.6753402 | 3.9363482 |
| LOC410862 | solute carrier family 41 member 3-like | -0.1423308 | 60.6551348 | 7.1832131 |
| LOC726790 | uncharacterized LOC726790 | -0.2088632 | 60.4973792 | 4.7284240 |
| LOC725404 | actin, alpha skeletal muscle-like | -0.5792781 | 60.3259082 | 5.2544480 |
| LOC409346 | TBC1 domain family member 1 | -0.0309560 | 60.2998853 | 3.9980452 |
| LOC410853 | irregular chiasm C-roughest protein-like | -0.5356528 | 60.0943221 | 4.5346924 |
| Apime-ASTA | allatostatin A | -0.6307195 | 59.9311886 | 2.3552450 |
| LOC724468 | uncharacterized LOC724468 | -0.5854036 | 59.6877482 | 3.9970815 |
| LOC726405 | serine/threonine-protein kinase PAK mbt | -0.0146423 | 59.5640287 | 4.0130287 |
| LOC411133 | T-box transcription factor TBX20-like | -0.5016446 | 59.5366834 | 1.4879265 |
| LOC727081 | uncharacterized LOC727081 | 0.0087731 | 59.4124622 | 6.7055970 |
| LOC724120 | homeobox protein orthopedia | -0.7426362 | 59.2959349 | 0.8975070 |
| LOC725970 | protein still life, isoform SIF type 1-like | -0.8138731 | 59.1341710 | 4.7024857 |
| LOC551587 | RNA-binding protein 24-like | 0.3005671 | 59.1280001 | 3.8935399 |
| LOC408787 | transmembrane and TPR repeat-containing protein CG4341 | -0.4184539 | 59.0880579 | 3.0825603 |
| LOC410689 | ELAV-like protein 2 | -0.8083835 | 59.0803759 | 5.6701934 |
| LOC408298 | maternal protein pumilio | -0.3167450 | 59.0666484 | 7.9608980 |
| LOC413943 | eukaryotic peptide chain release factor GTP-binding subunit ERF3A | 0.0956520 | 59.0194997 | 9.4010748 |
| LOC725048 | nodal modulator 3 | 0.2326305 | 59.0175661 | 6.7668178 |
| LOC100577002 | multiple inositol polyphosphate phosphatase 1-like | 0.0427577 | 58.9962879 | 3.7333748 |
| arm | armadillo segment polarity protein | -0.0360989 | 58.9755663 | 6.9158028 |
| LOC413977 | calsyntenin-1 | -0.1442430 | 58.9245141 | 8.1602784 |
| Gycbeta1 | guanylate cyclase, soluble, beta 1 | -0.6417898 | 58.8119615 | 0.7228915 |
| LOC409557 | protein maelstrom | -0.1848524 | 58.7726177 | 3.1214925 |
| LOC413569 | tyrosine-protein phosphatase Lar | -0.3406770 | 58.7668714 | 7.3010326 |
| LOC410352 | putative DNA helicase Ino80 | -0.1235707 | 58.7515309 | 6.9515591 |
| LOC551796 | cationic amino acid transporter 4 | -0.3397512 | 58.6674991 | 3.1855532 |
| LOC100576901 | cGMP-dependent protein kinase 1-like | 0.1214286 | 58.6183747 | 5.5984129 |
| LOC100577530 | uncharacterized LOC100577530 | -0.1464423 | 58.4319833 | 5.4933392 |
| LOC727092 | protein nubbin-like | -0.5892516 | 58.4084519 | 3.5730082 |
| LOC411201 | discoidin domain-containing receptor 2 | -0.2314802 | 58.3785312 | 3.3717662 |
| LOC725501 | protein N-terminal glutamine amidohydrolase | 0.1751275 | 58.2831854 | 6.7044674 |
| LOC410161 | afadin | 0.0969477 | 58.2461047 | 6.3681951 |
| LOC727284 | transcription factor Sox-10-like | -0.5521458 | 58.1981356 | 3.3363338 |
| LOC551425 | UDP-N-acetylglucosamine–peptide N-acetylglucosaminyltransferase 110 kDa subunit | 0.2769352 | 58.1452832 | 7.2010224 |
| LOC726051 | serine/threonine-protein kinase PLK1-like | 0.2841973 | 57.8336841 | 2.1852679 |
| LOC411617 | inactive rhomboid protein 1 | -0.5217784 | 57.6873956 | 3.2546518 |
| LOC725092 | E3 ubiquitin-protein ligase RNF220-like | -0.0520581 | 57.6402973 | 5.4842668 |
| LOC408271 | rap1 GTPase-activating protein 1 | 0.0445326 | 57.3836626 | 6.0727541 |
| LOC408770 | protein turtle | -0.5981678 | 57.1330405 | 7.0628839 |
| LOC411764 | bestrophin-4-like | -0.2158478 | 56.9627001 | 4.8679571 |
| LOC725218 | growth arrest-specific protein 2-like | -0.1964876 | 56.7814495 | 2.5204069 |
| LOC100576129 | uncharacterized LOC100576129 | -0.3329742 | 56.7611749 | 4.1229050 |
| LOC408434 | EGF domain-specific O-linked N-acetylglucosamine transferase | -0.1980487 | 56.7395992 | 4.3199585 |
| LOC100578116 | zinc finger protein 480 | 0.2109385 | 56.6947929 | 4.2185007 |
| LOC102655904 | DNA-directed RNA polymerases I, II, and III subunit RPABC3 | 0.1754355 | 56.5846137 | 6.1513620 |
| LOC410776 | protein 60A | 0.4059450 | 56.5136166 | 4.1751124 |
| LOC410831 | casein kinase I | -0.0245663 | 56.4913278 | 7.0015774 |
| LOC411534 | circadian locomoter output cycles protein kaput-like | -0.0763187 | 56.4871922 | 5.6934624 |
| LOC726017 | lachesin | 0.0385144 | 56.2629623 | 3.2864845 |
| LOC725151 | homeobox protein engrailed-1a | -0.2192380 | 56.2620797 | 1.4342105 |
| LOC724520 | uncharacterized LOC724520 | -0.2299516 | 56.2584767 | 1.2300412 |
| LOC100577385 | facilitated trehalose transporter Tret1-like | -0.6324938 | 56.1850859 | 3.6695501 |
| LOC408267 | syntaxin-binding protein 5 | 0.1211698 | 56.0578126 | 5.3174628 |
| LOC725118 | tyrosine-protein phosphatase 69D | 0.0486007 | 55.9776965 | 6.2010971 |
| LOC102655779 | uncharacterized LOC102655779 | 0.0181273 | 55.9316717 | 3.1165889 |
| LOC409305 | elongation factor-like GTPase 1 | 0.4968551 | 55.8324405 | 7.1120054 |
| LOC413246 | ras-like protein 3 | -0.1869878 | 55.8213601 | 9.1517768 |
| LOC413265 | uncharacterized LOC413265 | 0.1620531 | 55.8157895 | 5.0398760 |
| LOC413835 | RNA-binding protein 1-like | -0.0742358 | 55.7415183 | 7.7538147 |
| LOC410987 | uncharacterized LOC410987 | 0.1412662 | 55.7242449 | 4.5908683 |
| LOC551073 | single-stranded DNA-binding protein 3 | -0.0482785 | 55.6758390 | 6.0836165 |
| LOC725474 | polycomb group protein Pc | 0.2284812 | 55.6588530 | 4.0760912 |
| LOC552512 | kinesin 3E | -0.3029286 | 55.6545498 | 4.9500673 |
| LOC410905 | sodium/potassium-transporting ATPase subunit beta-2 | 0.1402682 | 55.5244353 | 5.8608088 |
| LOC551706 | unconventional myosin-IXb | -0.2432455 | 55.4305253 | 4.9714981 |
| LOC552613 | basic proline-rich protein | 0.1377459 | 55.4216010 | 5.4665784 |
| vas | ATP-dependent RNA helicase vasa | -0.5606307 | 55.1229954 | 5.2786935 |
| LOC408714 | uncharacterized protein DDB_G0286591-like | -0.0226118 | 55.0117418 | 3.8203684 |
| LOC413213 | tubulin polyglutamylase TTLL4-like | 0.4333727 | 54.9706135 | 6.3859965 |
| LOC726694 | uncharacterized LOC726694 | 0.2859052 | 54.9184915 | 5.7525170 |
| LOC412893 | hemicentin-2 | 0.2521628 | 54.8599384 | 2.9311336 |
| Obp10 | odorant binding protein 10 | -0.2787660 | 54.8375671 | 3.5280275 |
| LOC100578955 | uncharacterized LOC100578955 | 0.0675401 | 54.7422412 | 6.0330415 |
| LOC100578220 | uncharacterized LOC100578220 | -0.1201816 | 54.6399691 | 3.5084680 |
| LOC412069 | UTP–glucose-1-phosphate uridylyltransferase | -0.0259432 | 54.5322089 | 8.8895180 |
| LOC100577517 | uncharacterized LOC100577517 | -0.4393534 | 54.5159388 | 5.0393703 |
| LOC725093 | phosphofurin acidic cluster sorting protein 2 | -0.3114316 | 54.4894955 | 4.4374066 |
| Reck | reversion-inducing-cysteine-rich protein with kazal motifs | -0.1260743 | 54.4805865 | 5.3404663 |
| LOC725625 | uncharacterized LOC725625 | 0.0861169 | 54.4651424 | 3.5748045 |
| Hsc70-4 | heat shock protein cognate 4 | 0.3388451 | 54.4504405 | 13.2317327 |
| LOC411629 | zinc finger protein ubi-d4 A | 0.0396583 | 54.4146590 | 5.8996538 |
| LOC408701 | protein phosphatase 1H | 0.0094063 | 54.3587631 | 4.5115996 |
| LOC412770 | transcription factor E2F2 | 0.1630333 | 54.3294859 | 5.5573703 |
| LOC725023 | mediator of RNA polymerase II transcription subunit 26 | 0.3641375 | 54.1805462 | 5.5558909 |
| LOC100577543 | fez family zinc finger protein 1-like | -0.5077672 | 54.1799969 | 1.5949925 |
| LOC408645 | glutamate receptor, ionotropic, kainate 2 | -0.3362092 | 54.1481627 | 2.7603725 |
| LOC725057 | coatomer subunit beta | 0.1533364 | 53.9682041 | 8.4877726 |
| Antp | homeotic protein antennapedia | -0.5152874 | 53.9117002 | 5.9076523 |
| LOC411220 | glutamate receptor 1 | -0.4691751 | 53.8471681 | 0.9688287 |
| LOC413562 | rho guanine nucleotide exchange factor 17 | -0.0523551 | 53.7611420 | 5.4530620 |
| LOC410893 | transcription factor AP-2-epsilon | -0.1721400 | 53.6610718 | 5.0490258 |
| LOC412108 | casein kinase I-like | -0.1796370 | 53.5846268 | 7.3617486 |
| LOC413384 | leucine-rich repeat-containing protein 24 | -0.1938417 | 53.5081806 | 2.8738764 |
| LOC725504 | homeobox protein ARX | -0.4795658 | 53.4731475 | 0.8967898 |
| LOC408501 | serine/threonine-protein kinase/endoribonuclease IRE1 | 0.0165406 | 53.4358985 | 7.1335521 |
| LOC107964840 | uncharacterized LOC107964840 | -0.1060677 | 53.1803383 | 1.5716201 |
| LOC100576270 | ribonuclease UK114 | -0.5451019 | 53.1515184 | 7.0233736 |
| LOC727238 | histone-lysine N-methyltransferase ash1 | -0.2218003 | 53.0756379 | 6.9186631 |
| LOC725799 | uncharacterized LOC725799 | 0.4576791 | 53.0298705 | 4.5619761 |
| LOC411076 | UPF0553 protein C9orf64 homolog | -0.2504000 | 53.0295813 | 5.4734574 |
| nAChRa2 | nicotinic acetylcholine receptor alpha2 subunit | -0.5969651 | 52.9101975 | 1.4955744 |
| LOC413020 | two pore potassium channel protein sup-9 | -0.4953192 | 52.8794497 | 0.5355360 |
| LOC551124 | frizzled-2 | -0.1966748 | 52.7581527 | 4.2358289 |
| LOC726871 | synaptic vesicle glycoprotein 2B | 0.0153076 | 52.6803380 | 5.0665906 |
| LOC412008 | sprouty-related, EVH1 domain-containing protein 1 | -0.0949765 | 52.5592902 | 3.1572014 |
| LOC413474 | nuclear hormone receptor FTZ-F1 beta | 0.0123108 | 52.5340558 | 6.0802149 |
| LOC413721 | uncharacterized LOC413721 | 0.1693615 | 52.4680514 | 7.5683606 |
| LOC408660 | uncharacterized LOC408660 | -0.3375258 | 52.4178221 | 1.8099095 |
| LOC413464 | tyrosine-protein kinase Src64B | -0.2217158 | 52.4065882 | 5.4846105 |
| LOC100577986 | probable sodium/potassium/calcium exchanger CG1090 | -0.4323889 | 52.3893004 | 1.9751820 |
| LOC551265 | LIX1-like protein | 0.1443164 | 52.3454760 | 4.8262629 |
| LOC724420 | transcription factor stalky-like | 0.0893712 | 52.3260484 | 3.7816997 |
| LOC102655336 | uncharacterized LOC102655336 | -0.6230930 | 52.3251781 | 1.2209497 |
| LOC412878 | DNA N6-methyl adenine demethylase | -0.5218685 | 52.1417542 | 7.3279963 |
| LOC410534 | uncharacterized LOC410534 | -0.5459719 | 52.1016373 | 1.2623077 |
| LOC410724 | protein prickle-like | -0.0440084 | 52.0866894 | 4.1894140 |
| LOC410860 | battenin | 0.0620420 | 52.0494837 | 6.9744137 |
| LOC726972 | uncharacterized LOC726972 | -0.5603798 | 51.9383435 | 4.8839430 |
| LOC412897 | E3 ubiquitin-protein ligase MYLIP | 0.3384015 | 51.9183408 | 6.2903983 |
| LOC725324 | uncharacterized LOC725324 | 0.0137985 | 51.7654646 | 5.8352511 |
| LOC411646 | protein Gawky | 0.2606334 | 51.7372976 | 6.2890811 |
| LOC726190 | arginine/serine-rich protein PNISR-like | -0.0313480 | 51.6475302 | 6.4394621 |
| LOC726298 | putative transcription factor SOX-15 | -0.3040818 | 51.5617731 | 1.8569545 |
| LOC100577682 | uncharacterized LOC100577682 | -0.5266070 | 51.5143198 | 2.5504793 |
| LOC726957 | SAP30-binding protein | 0.1468421 | 51.4819717 | 5.5236064 |
| LOC724704 | cytoplasmic polyadenylation element-binding protein 2 | -0.0122341 | 51.4783254 | 8.9818316 |
| LOC100578067 | enhancer of split mgamma protein-like | -0.1453986 | 51.4683222 | 2.0608371 |
| LOC725864 | bromodomain-containing protein 4 | -0.1489944 | 51.3267290 | 6.6687627 |
| LOC413490 | clavesin-2-like | -0.1069263 | 51.0852844 | 3.9037673 |
| LOC107964811 | uncharacterized LOC107964811 | 0.0392617 | 51.0205326 | 3.8320274 |
| LOC102655561 | sonic hedgehog protein A-like | -0.2979736 | 50.9568105 | 1.4169373 |
| LOC409268 | uncharacterized LOC409268 | 0.1228819 | 50.9055795 | 5.7331323 |
| LOC726201 | uncharacterized LOC726201 | 0.2977979 | 50.8362536 | 4.6146814 |
| LOC409818 | sodium/calcium exchanger 3 | -0.0700516 | 50.7573168 | 4.4448998 |
| LOC408633 | chromatin complexes subunit BAP18 | 0.0994158 | 50.7369008 | 4.7138164 |
| LOC413500 | protein Wnt-10b | -0.4120727 | 50.6267388 | 1.6572463 |
| Calpb | calpain-B | -0.0934583 | 50.4558009 | 6.7078697 |
| LOC102655919 | neurofilament medium polypeptide-like | 0.0787105 | 50.3806737 | 4.9597256 |
| LOC408830 | muscle M-line assembly protein unc-89 | -0.1771457 | 50.2606300 | 7.0047928 |
| LOC408804 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase epsilon-1 | -0.9319226 | 50.2535908 | 2.9637138 |
| LOC409565 | cationic amino acid transporter 3 | -0.5827818 | 50.2354348 | 1.6170097 |
| LOC100578754 | histone demethylase UTY | 0.0694093 | 50.1361139 | 4.4338311 |
| LOC107965047 | uncharacterized LOC107965047 | -0.2956481 | 50.1124122 | 2.3222720 |
| LOC100577694 | neuropeptide-like 1 | -0.5068378 | 50.0334151 | 0.0806318 |
| LOC552006 | uncharacterized protein DDB_G0287625-like | 0.0790032 | 49.9951122 | 6.5059642 |
| LOC411674 | transcription factor RFX3 | 0.2773811 | 49.9830208 | 3.9914738 |
| LOC107964319 | calmodulin-lysine N-methyltransferase | 0.2962477 | 49.9298452 | 2.3483508 |
| LOC409682 | NADP-dependent malic enzyme | 0.2764969 | 49.8275322 | 6.4331305 |
| LOC408782 | tubulin beta-1 | -0.0108944 | 49.8272959 | 10.7491977 |
| LOC412714 | cAMP-dependent protein kinase type I regulatory subunit | 0.1012909 | 49.8167738 | 6.4257966 |
| LOC725115 | poly(U)-binding-splicing factor half pint | 0.1347993 | 49.8066720 | 7.3600858 |
| LOC410779 | neuroligin 2 | -0.7100682 | 49.7814054 | 1.9380051 |
| LOC551754 | phosphorylated CTD-interacting factor 1 | -0.1157891 | 49.7767341 | 3.7712501 |
| LOC726729 | helix-loop-helix protein 11 | -0.1194104 | 49.6351189 | 6.1660068 |
| LOC410282 | uncharacterized LOC410282 | 0.0093598 | 49.2989240 | 0.5057623 |
| LOC725616 | allatostatin C | -0.1156234 | 49.2825235 | 2.0485890 |
| LOC408631 | patronin | 0.5995470 | 49.1976618 | 6.8582510 |
| LOC726625 | 4-coumarate–CoA ligase 1-like | -0.1711245 | 49.0676159 | 8.6249010 |
| LOC412002 | E3 ubiquitin-protein ligase UBR3 | 0.3440067 | 49.0337284 | 6.3871704 |
| LOC410824 | spondin-1 | -0.7159637 | 48.9982477 | 7.1759966 |
| LOC102655661 | protein roadkill-like | 0.6347287 | 48.9846937 | 3.3758350 |
| Eaat-2 | excitatory amino acid transporter 2 | -0.6516156 | 48.9693379 | 2.8232385 |
| LOC551707 | RNA-binding protein with serine-rich domain 1 | 0.0209548 | 48.9634843 | 7.6853503 |
| LOC550870 | uncharacterized LOC550870 | 0.5451807 | 48.9595632 | 2.7758315 |
| LOC100578264 | RNA-binding protein Musashi homolog Rbp6-like | -0.0390128 | 48.9591975 | 4.3115158 |
| LOC410517 | uncharacterized LOC410517 | -0.3097972 | 48.9284001 | 8.2360978 |
| LOC413371 | mothers against decapentaplegic homolog 6 | 0.0569159 | 48.9235105 | 4.0480929 |
| LOC409487 | probable glutamine-dependent NAD(+) synthetase | 0.1930236 | 48.9012520 | 5.4821306 |
| LOC413557 | syndecan | 0.0929928 | 48.7757849 | 6.5059677 |
| LOC725354 | uncharacterized LOC725354 | -0.2891459 | 48.7531698 | 2.5012400 |
| LOC100578877 | uncharacterized LOC100578877 | -0.4736515 | 48.7039175 | 0.7711559 |
| LOC102654905 | uncharacterized LOC102654905 | 0.1622603 | 48.5876371 | 4.5375385 |
| LOC551603 | ras-related protein Rab-11A | 0.1477597 | 48.5770021 | 7.1464469 |
| LOC410637 | nuclear receptor coactivator 3-like | -0.0316416 | 48.5675986 | 7.9100449 |
| LOC409246 | MAP kinase-activated protein kinase 2 | 0.3885070 | 48.5456804 | 5.8023695 |
| otd2 | homeotic protein ocelliless | 0.0278428 | 48.3077344 | 1.6892709 |
| LOC410353 | CUGBP Elav-like family member 4 | -0.7519614 | 48.1380282 | 3.6840274 |
| LOC551737 | synapsin | -0.6906820 | 48.0646706 | 5.2270590 |
| LOC411122 | splicing factor 1 | 0.1067735 | 47.9387325 | 6.9776418 |
| LOC411158 | leucine-rich repeat-containing protein 24 | 0.0490858 | 47.7291169 | 3.8232522 |
| LOC410910 | serine/threonine-protein kinase GA29083-like | -0.0359048 | 47.6977181 | 4.3604498 |
| LOC102655814 | ras-related and estrogen-regulated growth inhibitor | 0.1303654 | 47.6803895 | 3.6340473 |
| LOC551780 | uncharacterized protein CG3556-like | -0.4659961 | 47.5855982 | 3.3673522 |
| LOC724299 | uncharacterized LOC724299 | 0.4721786 | 47.5368221 | 4.9920443 |
| LOC102655500 | dual specificity tyrosine-phosphorylation-regulated kinase 2-like | -0.1697805 | 47.4523392 | 4.7084425 |
| LOC724603 | guanylate cyclase 32E-like | -0.0298232 | 47.3924842 | 6.7381096 |
| LOC410001 | regulating synaptic membrane exocytosis protein 2 | -0.7392830 | 47.3348385 | 2.7677407 |
| LOC410434 | splicing factor 3B subunit 4 | -0.0827790 | 47.2340488 | 5.4193655 |
| LOC409713 | protein hu-li tai shao | -0.0259042 | 47.2289144 | 9.7992562 |
| LOC551378 | uncharacterized LOC551378 | 0.2019691 | 47.1635900 | 2.6262096 |
| LOC408869 | lissencephaly-1 homolog | 0.0409160 | 47.1367895 | 8.0695327 |
| LOC410035 | dorsal-ventral patterning protein Sog | -0.3944994 | 47.0313958 | 4.5560409 |
| LOC408674 | major facilitator superfamily domain-containing protein 12-like | -0.2087777 | 46.8742864 | 4.3372207 |
| LOC409769 | uncharacterized LOC409769 | -0.2735850 | 46.8130387 | 6.6493658 |
| LOC107963965 | zinc finger HIT domain-containing protein 1 | 0.0263501 | 46.7892445 | 4.6371090 |
| LOC408374 | mucin-19 | 0.1252032 | 46.7475380 | 6.1282596 |
| LOC725245 | protein eiger-like | -0.3559845 | 46.7466608 | 5.0646931 |
| LOC724962 | uncharacterized LOC724962 | -0.3017149 | 46.6990267 | 5.1936708 |
| LOC413242 | bifunctional heparan sulfate N-deacetylase/N-sulfotransferase | 0.5658680 | 46.6840048 | 5.3659179 |
| LOC409905 | 2-acylglycerol O-acyltransferase 1-like | -0.5044453 | 46.6181618 | 6.3787130 |
| LOC410337 | venom dipeptidylpeptidase IV | -0.1396538 | 46.5941345 | 7.6518723 |
| LOC408648 | RING finger protein 11 | 0.1289370 | 46.5794940 | 5.9954402 |
| LOC410954 | sterile alpha and TIR motif-containing protein 1 | 0.2483720 | 46.5347378 | 6.7683328 |
| LOC725647 | 40S ribosomal protein S6 | 0.0905486 | 46.4576977 | 11.3671330 |
| LOC408430 | voltage-dependent L-type calcium channel subunit beta-2 | -0.4654506 | 46.3192988 | 3.8561299 |
| LOC100578990 | dynein intermediate chain 3, ciliary-like | -0.8635713 | 46.2351080 | 2.4357700 |
| LOC551938 | elongation of very long chain fatty acids protein AAEL008004 | -0.2315752 | 46.1660956 | 2.9633807 |
| LOC410577 | acid sphingomyelinase-like phosphodiesterase 3a | -0.3238306 | 46.1636594 | 2.9952302 |
| LOC725331 | protein hairy-like | -0.1089405 | 46.1159434 | 4.1271210 |
| LOC100578439 | chascon-like | -0.3245278 | 46.0337385 | 6.2888604 |
| LOC727312 | Golgi-specific brefeldin A-resistance guanine nucleotide exchange factor 1 | 0.2208745 | 46.0303611 | 7.1817784 |
| LOC409872 | TRPL translocation defect protein 14 | -0.1884284 | 45.9339882 | 5.1899223 |
| LOC726958 | tumor necrosis factor receptor superfamily member wengen | -0.1300046 | 45.9288705 | 4.9099889 |
| LOC102655408 | cadherin-86C | -0.5923510 | 45.8769201 | 0.8270079 |
| LOC100577641 | uncharacterized LOC100577641 | -0.6196813 | 45.8210926 | 4.5432359 |
| MARCH6 | membrane-associated ring finger (C3HC4) 6 | 0.3134898 | 45.7913912 | 7.1123725 |
| LOC409091 | neurotrimin | 0.4669140 | 45.7560181 | 6.5492976 |
| LOC408695 | uncharacterized LOC408695 | -0.5196069 | 45.7030310 | 2.4391758 |
| LOC551947 | WD repeat and FYVE domain-containing protein 3 | 0.1858768 | 45.6709543 | 5.1183508 |
| LOC413676 | patched domain-containing protein 3 | -0.2040751 | 45.5705284 | 6.0239122 |
| LOC413073 | JNK-interacting protein 3 | 0.0378682 | 45.5024591 | 5.9352710 |
| LOC552079 | homeobox protein homothorax | 0.4279134 | 45.4496792 | 6.5828863 |
| nAChRa3 | nicotinic acetylcholine receptor alpha3 subunit | -0.3329006 | 45.3099579 | 5.1057919 |
| LOC100577231 | uncharacterized LOC100577231 | -0.6579725 | 45.1218519 | 1.0681416 |
| LOC100576882 | uncharacterized LOC100576882 | -0.2928303 | 45.1025349 | 4.5198771 |
| LOC410771 | WD repeat-containing protein 47 | 0.0727246 | 45.0672834 | 5.9402424 |
| LOC411548 | protein phosphatase 1 regulatory subunit 16A | 0.0926727 | 45.0672327 | 3.7843540 |
| LOC411655 | serine/arginine repetitive matrix protein 1 | 0.0206096 | 45.0643291 | 6.4421808 |
| LOC725343 | alkyldihydroxyacetonephosphate synthase | 0.0435414 | 44.9288474 | 6.2983365 |
| LOC408809 | diacylglycerol kinase theta | -0.5295280 | 44.8197385 | 5.3060500 |
| LOC550922 | protein mab-21-like | -0.2475319 | 44.7914617 | 1.9626095 |
| LOC100577598 | uncharacterized protein DDB_G0284459-like | -0.3475359 | 44.6463084 | 1.4310005 |
| LOC409804 | serine/threonine-protein phosphatase PP1-beta catalytic subunit | -0.1104950 | 44.6391943 | 5.6627906 |
| LOC100577751 | LIM/homeobox protein Lhx5 | -0.2202370 | 44.5633901 | 2.9282571 |
| LOC551514 | serine protease nudel | -0.0750231 | 44.5428597 | 3.8970810 |
| LOC102654200 | uncharacterized LOC102654200 | -0.2487002 | 44.5261815 | 1.9200129 |
| LOC409533 | annexin B9-like | 0.3139030 | 44.4669282 | 7.7911469 |
| LOC410069 | tropomyosin-like | 0.3570652 | 44.4591667 | 5.2554988 |
| LOC410545 | CLIP-associating protein 1-A | 0.0516804 | 44.4225252 | 7.6409105 |
| LOC411420 | adenosine receptor A2b | -0.0036570 | 44.3431835 | 1.4138375 |
| LOC551121 | dipeptidase 1 | -0.6123526 | 44.3071585 | 2.0944724 |
| LOC100578474 | uncharacterized LOC100578474 | 0.6978762 | 44.1509922 | 3.7582119 |
| LOC726179 | protein sister of odd and bowel-like | 0.1883943 | 44.1104587 | 2.2171593 |
| nAChRa6 | nicotinic acetylcholine receptor alpha6 subunit | -0.9959881 | 44.1037149 | 1.9760881 |
| LOC409774 | testican-1 | -0.1051198 | 44.0778328 | 5.8716210 |
| LOC411935 | large neutral amino acids transporter small subunit 2 | -0.0883877 | 43.9945778 | 5.5499158 |
| LOC413366 | homeobox protein SIX1-like | 0.0661002 | 43.9181012 | 1.7569792 |
| LOC412451 | ankyrin repeat domain-containing protein 13C | -0.2358569 | 43.6662903 | 5.1671714 |
| LOC412260 | serine/threonine-protein kinase SIK3-like | 0.3548373 | 43.6457854 | 4.6616665 |
| LOC408841 | voltage-dependent calcium channel subunit alpha-2/delta-3 | -0.2885187 | 43.3789102 | 2.6730469 |
| H | hairless | -0.1272879 | 43.3339577 | 4.7480755 |
| LOC413328 | phospholipid-transporting ATPase ID | 0.0436264 | 43.3107202 | 5.6411899 |
| LOC409299 | adenylosuccinate synthetase | 0.2085256 | 43.2918130 | 7.1237539 |
| LOC100577348 | uncharacterized LOC100577348 | -0.6298781 | 43.2276200 | 2.3390693 |
| LOC100577118 | trace amine-associated receptor 9 | -0.1284187 | 43.2238775 | 0.6618594 |
| LOC727029 | 26S proteasome non-ATPase regulatory subunit 1 | 0.4330575 | 43.1545891 | 7.2176854 |
| LOC412224 | tectonin beta-propeller repeat-containing protein | 0.0052984 | 43.0455449 | 5.5187667 |
| LOC408845 | protein unc-79 homolog | -0.0962371 | 43.0399353 | 2.4232588 |
| LOC551762 | adenosylhomocysteinase 2-like | 0.2920514 | 43.0343795 | 6.7073817 |
| LOC410425 | lipoma HMGIC fusion partner-like 2 protein | -0.0800691 | 42.9884072 | 4.2645203 |
| LOC413867 | transaldolase | 0.2096526 | 42.9271087 | 9.4858163 |
| LOC100577919 | probable serine/threonine-protein kinase kinX | 0.3139198 | 42.9264240 | 4.7905830 |
| LOC551792 | cytosolic carboxypeptidase 1-like | -0.2860766 | 42.8547660 | 4.1335097 |
| LOC410375 | uncharacterized LOC410375 | -0.0626575 | 42.5201347 | 4.6311388 |
| LOC552275 | AF4/FMR2 family member 4-like | -0.0460197 | 42.4832304 | 4.5701315 |
| LOC551461 | adenylate cyclase type 2 | 0.0672365 | 42.3550186 | 5.7706494 |
| LOC408935 | high-affinity choline transporter 1 | -0.5936097 | 42.2851034 | 2.3803018 |
| LOC551617 | uncharacterized LOC551617 | -0.1942288 | 42.0835705 | 5.3928657 |
| LOC102655707 | uncharacterized LOC102655707 | -1.0568672 | 42.0509940 | 2.0292053 |
| LOC409902 | liprin-alpha-1 | 0.3671760 | 42.0273831 | 5.9327443 |
| LOC100577942 | homeobox protein Nkx-2.5-like | -0.5323723 | 41.9093769 | 0.4964504 |
| LOC410480 | trichohyalin | -0.0301880 | 41.8011637 | 5.6505758 |
| LOC413914 | carbohydrate sulfotransferase 11 | -0.2026537 | 41.7915078 | 3.4956274 |
| LOC413755 | attractin | -0.0634219 | 41.7257050 | 6.1653810 |
| LOC726506 | kinesin 14 | -0.4476557 | 41.6676660 | 5.3312027 |
| LOC412795 | protocadherin-15 | 0.1244665 | 41.6325970 | 5.4209434 |
| LOC413663 | myotubularin-related protein 4 | 0.1725352 | 41.5857443 | 6.5855657 |
| LOC727101 | protein decapentaplegic | 0.2061128 | 41.5507627 | 4.8597429 |
| LOC408563 | centrosomin | -0.5386681 | 41.4599083 | 7.0157750 |
| LOC408769 | excitatory amino acid transporter | -0.9519711 | 41.4032908 | 2.3019007 |
| LOC100578519 | uncharacterized protein PF11_0207-like | 0.1583419 | 41.3961725 | 4.5657497 |
| LOC100576405 | AT-rich interactive domain-containing protein 5B-like | -0.5654566 | 41.3323512 | 5.1206090 |
| LOC107964648 | S-formylglutathione hydrolase | 0.2239158 | 41.3169792 | 7.4883364 |
| LOC724546 | sodium-coupled monocarboxylate transporter 1-like | -0.6496079 | 41.2768995 | 2.0775497 |
| LOC410746 | glucose dehydrogenase [FAD, quinone] | 0.0053555 | 41.2381197 | 1.2062448 |
| LOC412818 | NMDA receptor 2 | -0.6345450 | 41.2350115 | 3.3958907 |
| LOC413940 | importin-9 | 0.2277169 | 41.2217870 | 7.5189873 |
| LOC107965180 | uncharacterized LOC107965180 | -0.6110590 | 41.2066530 | 0.8963128 |
| LOC411575 | nucleosomal histone kinase 1 | 0.2308661 | 41.1246417 | 5.7205796 |
| LOC412801 | mediator of RNA polymerase II transcription subunit 12-like | -0.4409784 | 40.9307224 | 3.1830968 |
| LOC107964278 | uncharacterized LOC107964278 | -0.1570716 | 40.8618504 | 1.7040101 |
| LOC726335 | protein CBFA2T2 | 0.4638908 | 40.8169731 | 5.6181811 |
| LOC726284 | regulator of G-protein signaling 17 | -0.5040795 | 40.6861745 | 5.5236720 |
| LOC725645 | uncharacterized LOC725645 | -0.2044231 | 40.6761202 | 2.5543510 |
| LOC100577239 | uncharacterized LOC100577239 | -0.9247679 | 40.6682418 | 0.3280651 |
| LOC102653604 | adenylate kinase 9-like | -0.0121965 | 40.6672531 | 5.5996516 |
| LOC726866 | uncharacterized LOC726866 | -0.1918365 | 40.6342098 | 4.7875901 |
| LOC724466 | uncharacterized LOC724466 | -0.0665733 | 40.6284872 | 1.8808416 |
| LOC410148 | carboxypeptidase Q-like | -0.0906650 | 40.6223745 | 3.6254967 |
| LOC413502 | protein Wnt-1 | -0.2411964 | 40.6177839 | 1.1501313 |
| LOC100577214 | protein giant-lens | -0.1438957 | 40.5399356 | 2.7908681 |
| LOC410467 | uncharacterized LOC410467 | -0.3260751 | 40.4153504 | 3.2950486 |
| LOC409225 | NEDD8-conjugating enzyme Ubc12 | 0.1480467 | 40.3911082 | 6.0956009 |
| LOC107964824 | uncharacterized LOC107964824 | -0.8873180 | 40.2233665 | 1.2901832 |
| LOC724497 | patched domain-containing protein 3-like | -0.5421840 | 40.1897662 | 3.6412779 |
| Brd7 | bromodomain containing 7 | -0.1607869 | 40.1860565 | 6.3501027 |
| LOC413279 | protein ABHD17B | 0.5320837 | 39.9741176 | 3.7182048 |
| LOC107964196 | uncharacterized LOC107964196 | 0.0808790 | 39.9474916 | 0.1144379 |
| LOC411173 | torso-like protein | -0.1238310 | 39.9474612 | 3.8668786 |
| LOC410317 | small conductance calcium-activated potassium channel protein | -0.5806032 | 39.8629167 | 2.2308168 |
| LOC107965472 | uncharacterized LOC107965472 | -0.7248018 | 39.8338379 | 0.5535938 |
| LOC410291 | dipeptidase 1-like | -0.1341157 | 39.6424356 | 1.0031000 |
| LOC409780 | CUGBP Elav-like family member 2 | -0.2137167 | 39.6035654 | 7.6852793 |
| LOC107964023 | talin-2-like | 0.1009405 | 39.5505965 | 2.5391100 |
| LOC552289 | RNA-binding protein 39 | 0.3195725 | 39.5348104 | 6.8033674 |
| LOC550998 | carbohydrate sulfotransferase 11-like | -0.1912591 | 39.4568461 | 4.2353316 |
| LOC726543 | proline-rich nuclear receptor coactivator 2-like | -0.2973911 | 39.4147878 | 5.1718057 |
| LOC726884 | uncharacterized LOC726884 | -0.4305864 | 39.2803597 | 2.8369855 |
| LOC551727 | SUZ domain-containing protein 1 | -0.0016771 | 39.2155085 | 3.9397411 |
| LOC411670 | LON peptidase N-terminal domain and RING finger protein 1-like | -0.0097129 | 39.0617871 | 5.3064937 |
| LOC725963 | golgin subfamily A member 6-like protein 22 | -0.4673246 | 39.0610517 | 1.6684479 |
| LOC409177 | kinase D-interacting substrate of 220 kDa | -0.0052112 | 39.0500675 | 5.9397721 |
| LOC412243 | protein split ends-like | -0.2757696 | 39.0366216 | 8.4692574 |
| LOC552709 | polypyrimidine tract-binding protein 1 | -0.2967106 | 38.9619265 | 8.3123066 |
| LOC408910 | protein SCAI | -1.0188794 | 38.9061864 | 1.1315157 |
| LOC414032 | tubulin polyglutamylase TTLL5 | 0.5045749 | 38.9007051 | 4.1158954 |
| LOC100578611 | uncharacterized LOC100578611 | -0.3469891 | 38.8018882 | 1.8718532 |
| LOC726192 | carbohydrate sulfotransferase 11-like | 0.3115404 | 38.7819454 | 3.3695696 |
| LOC408958 | nucleolar protein 4-like | 0.0019538 | 38.7523691 | 6.2553889 |
| LOC726896 | zinc finger and BTB domain-containing protein 47-like | -0.3836761 | 38.7344191 | 1.7598204 |
| LOC411871 | dual specificity tyrosine-phosphorylation-regulated kinase 2-like | -0.4590122 | 38.5980017 | 6.2297707 |
| LOC102655706 | uncharacterized LOC102655706 | -0.3397039 | 38.5612672 | 2.0121056 |
| LOC100578337 | uncharacterized LOC100578337 | -0.0693101 | 38.5573237 | 4.5184076 |
| For | cGMP-dependent protein kinase foraging | -0.3556216 | 38.4766458 | 6.6066413 |
| LOC726251 | uncharacterized LOC726251 | 0.2569528 | 38.4627341 | 3.8485147 |
| LOC552529 | U6 snRNA-associated Sm-like protein LSm4 | 0.1508097 | 38.3999813 | 4.7495556 |
| LOC100576968 | merlin | 0.3311238 | 38.3727328 | 5.4356749 |
| LOC724830 | uncharacterized LOC724830 | 0.2353867 | 38.2560706 | 3.1408339 |
| LOC408988 | uncharacterized LOC408988 | -0.4735692 | 38.1990208 | 2.3123423 |
| LOC412273 | probable chitinase 3 | -0.5065204 | 38.1308226 | 7.2904606 |
| LOC725878 | protein held out wings | 0.0631269 | 38.0895634 | 4.8483952 |
| LOC410736 | uncharacterized LOC410736 | -0.4412480 | 38.0502932 | 3.8201817 |
| LOC552672 | proclotting enzyme | -0.7138862 | 38.0020062 | 4.9962258 |
| LOC551137 | proton-associated sugar transporter A | -0.6316656 | 37.9484663 | 1.2703330 |
| LOC552193 | proton-coupled amino acid transporter 1-like | 0.4222976 | 37.9230157 | 6.1108665 |
| LOC100578042 | nose resistant to fluoxetine protein 6-like | -1.7746566 | 37.8472247 | 4.0615370 |
| LOC725190 | protein snail | -0.8916303 | 37.7817064 | 2.0822042 |
| LOC552030 | uncharacterized LOC552030 | 0.2137053 | 37.7485295 | 5.0985315 |
| LOC410803 | solute carrier family 41 member 1-like | -0.1783220 | 37.6548675 | 5.0955395 |
| LOC100578112 | adenylate kinase isoenzyme 5 | 0.0614662 | 37.6415262 | 2.1255114 |
| LOC725833 | synaptonemal complex protein ZEP1-like | 0.0911419 | 37.5572998 | 3.4236529 |
| LOC408649 | uncharacterized LOC408649 | 0.4877982 | 37.5275677 | 6.9041710 |
| LOC409370 | brefeldin A-inhibited guanine nucleotide-exchange protein 1 | 0.3636803 | 37.4703264 | 6.6236038 |
| Nrx-1 | neurexin 1 | -0.7451160 | 37.4231392 | 0.7887932 |
| LOC100577047 | uncharacterized LOC100577047 | -0.4156601 | 37.4060389 | 2.2717328 |
| LOC409122 | solute carrier family 25 member 36-A | 0.3049965 | 37.3974535 | 4.5277398 |
| Adar | adenosine deaminase acting on RNA | -0.1139257 | 37.3952433 | 5.0874727 |
| LOC100577196 | alpha-protein kinase 1 | 0.1177589 | 37.2985988 | 4.0228526 |
| LOC408916 | JNK-interacting protein 1 | -0.6980946 | 37.2919923 | 0.9407966 |
| LOC551123 | RNA-binding protein Musashi homolog Rbp6 | 0.0151456 | 37.1671138 | 4.5806035 |
| LOC724226 | acyl-CoA Delta(11) desaturase-like | -1.3877174 | 37.1367451 | 4.4698993 |
| LOC724773 | uncharacterized LOC724773 | -0.6297578 | 37.1137702 | 0.9706034 |
| LOC409640 | proton-coupled amino acid transporter 1-like | -0.2057114 | 37.0846455 | 1.9905837 |
| LOC551840 | YTH domain-containing family protein 1 | -0.0032056 | 36.9884881 | 6.9479312 |
| LOC100576333 | nucleoredoxin-like | 0.3117484 | 36.9855183 | 3.4592062 |
| LOC550732 | trichohyalin | -0.9870347 | 36.9825127 | 2.6568891 |
| LOC412667 | proto-oncogene tyrosine-protein kinase receptor Ret | 0.2735311 | 36.8394559 | 3.5499359 |
| LOC411046 | uncharacterized LOC411046 | -0.1580679 | 36.7335118 | 4.9514571 |
| LOC408342 | disco-interacting protein 2 | -0.6683613 | 36.6906281 | 6.7507707 |
| LOC408664 | homeodomain-interacting protein kinase 2 | -0.4766143 | 36.6839056 | 7.0892146 |
| LOC410477 | dynein intermediate chain 3, ciliary-like | -1.2030939 | 36.5726544 | 2.4582107 |
| LOC100576251 | zinc finger protein 853-like | -0.8460071 | 36.5139685 | 2.7401472 |
| LOC551859 | calmodulin | -0.0034194 | 36.4046545 | 8.8334697 |
| Tpi | triosephosphate isomerase | 0.0105163 | 36.1070258 | 9.1435351 |
| LOC412855 | Down syndrome cell adhesion molecule-like protein Dscam2 | -0.0785888 | 36.0495304 | 1.0194502 |
| LOC411959 | fatty acid synthase-like | -0.5761598 | 36.0461489 | 10.9867857 |
| LOC100577138 | dual 3’,5’-cyclic-AMP and -GMP phosphodiesterase 11-like | -0.0767566 | 35.9672648 | 5.7217191 |
| LOC410878 | epoxide hydrolase 4-like | -0.2839288 | 35.9666519 | 5.4144743 |
| LOC726997 | MOXD1 homolog 1 | -0.2076211 | 35.9469174 | 6.9870813 |
| LOC100577032 | uncharacterized LOC100577032 | 0.1244536 | 35.8725836 | 5.8373116 |
| LOC408971 | ras-related protein Rab-3 | -0.6448551 | 35.8605216 | 1.7498936 |
| Tk | tachykinin | -0.3833079 | 35.8328679 | 1.0723533 |
| LOC727486 | BAG domain-containing protein Samui | -0.1546861 | 35.8189909 | 6.3728815 |
| LOC551736 | nephrin | 0.1787850 | 35.7717264 | 3.4052034 |
| LOC410936 | cytochrome b5 reductase 4 | -0.0569524 | 35.6544801 | 4.2351108 |
| LOC410228 | cAMP-dependent protein kinase catalytic subunit PRKX | 0.2019364 | 35.4879406 | 3.8295940 |
| LOC100576843 | inner centromere protein | 0.3774041 | 35.4085914 | 3.6419283 |
| LOC552265 | rho GTPase-activating protein 32 | -0.1688909 | 35.3416351 | 6.4866828 |
| LOC410259 | nuclear factor 1 X-type | -0.0672873 | 35.1771421 | 3.1451426 |
| LOC107965415 | uncharacterized LOC107965415 | -0.3447926 | 35.1445389 | 0.7291049 |
| LOC100578596 | uncharacterized LOC100578596 | 0.0126503 | 35.0982145 | 1.4550058 |
| LOC552134 | riboflavin kinase | -0.3722784 | 35.0698476 | 5.4480677 |
| LOC724740 | fork head domain transcription factor slp1 | -0.4892891 | 35.0349115 | 1.5992952 |
| LOC552546 | protocadherin Fat 4 | 0.1096285 | 34.9331097 | 3.8879578 |
| LOC726331 | alpha-2 adrenergic receptor | -0.7586731 | 34.9077370 | 2.3731412 |
| LOC411494 | cyclin-dependent kinase 5 activator 1 | -0.3963955 | 34.8722724 | 1.2695498 |
| LOC551044 | glucose dehydrogenase [FAD, quinone] | 0.3912963 | 34.8440022 | 3.5759414 |
| LOC409865 | protein retinal degeneration B | -0.2113761 | 34.7967107 | 5.4596872 |
| LOC724407 | stress-associated endoplasmic reticulum protein 2 | -0.1107679 | 34.7947057 | 6.4210478 |
| LOC725008 | protein trapped in endoderm-1 | 0.8922734 | 34.7234991 | 5.5546597 |
| LOC100577397 | DNA ligase 1-like | 0.1914230 | 34.6944422 | 6.0352388 |
| LOC413738 | uncharacterized LOC413738 | -0.2469076 | 34.6059810 | 5.9102577 |
| LOC411011 | guanine nucleotide-binding protein G(s) subunit alpha | 0.2148186 | 34.5975721 | 6.5392740 |
| LOC725294 | tyrosine-protein phosphatase 99A-like | 0.4807101 | 34.5766726 | 6.5396913 |
| LOC410538 | probable C-mannosyltransferase DPY19L1 | 0.1075129 | 34.5668473 | 4.5057595 |
| LOC409868 | matrix metalloproteinase-14 | 0.0015434 | 34.4746243 | 5.5153749 |
| LOC414015 | abl interactor 2 | 0.0007814 | 34.4165816 | 4.3536618 |
| LOC410462 | uncharacterized LOC410462 | 0.1279302 | 34.3787057 | 4.3743945 |
| LOC724636 | uncharacterized LOC724636 | -0.3598434 | 34.3712305 | 3.7557886 |
| LOC726497 | autophagy-related protein 2 homolog B | 0.1286999 | 34.3074185 | 6.2398616 |
| LOC409699 | 26S proteasome non-ATPase regulatory subunit 1-like | 0.2085626 | 34.2576553 | 7.8908582 |
| LOC411476 | la-related protein 4 | 0.5208216 | 34.2289721 | 6.7649122 |
| LOC411036 | two pore potassium channel protein sup-9 | -0.7290254 | 34.1522915 | 0.6340748 |
| LOC409235 | neurotrimin-like | -0.5869956 | 33.8768626 | 2.7983850 |
| LOC410482 | adenylosuccinate lyase | 0.4320625 | 33.8581158 | 6.8504019 |
| LOC726903 | uncharacterized LOC726903 | -0.3157813 | 33.8260032 | 1.5479518 |
| LOC726721 | protein transport protein Sec61 subunit gamma | -0.3337837 | 33.8137340 | 7.0259675 |
| LOC409165 | calreticulin | -0.2955929 | 33.7563371 | 11.7413476 |
| LOC409953 | RNA-binding protein 33-like | -0.1151832 | 33.7203030 | 6.4887682 |
| LOC408652 | protein suppressor of white apricot | 0.1274174 | 33.6597210 | 8.1468211 |
| LOC411018 | kinesin 11 | -0.0108734 | 33.6226340 | 4.3396333 |
| LOC410470 | putative polypeptide N-acetylgalactosaminyltransferase 9 | 0.0687321 | 33.5806177 | 6.3770325 |
| LOC411976 | sodium/potassium/calcium exchanger 4 | -0.7004039 | 33.3956683 | 1.2702981 |
| LOC102656634 | uncharacterized LOC102656634 | -0.1211374 | 33.3783226 | 1.8699252 |
| LOC100577636 | junctional adhesion molecule A-like | -0.5489328 | 33.2629512 | 1.1798419 |
| LOC410092 | dual oxidase maturation factor 1 | 0.2516022 | 33.2263160 | 4.7065247 |
| LOC551396 | integrator complex subunit 4 | 0.1672951 | 33.1784742 | 4.6725472 |
| LOC724390 | uncharacterized LOC724390 | -0.0529063 | 33.1286531 | 4.8006960 |
| LOC410694 | transcription factor collier | -0.3831351 | 33.0704710 | 2.0343803 |
| LOC413125 | LIM/homeobox protein Lhx9-like | -0.0643317 | 33.0155810 | 2.1457975 |
| LOC413987 | polypeptide N-acetylgalactosaminyltransferase 5 | -0.1125301 | 32.9973619 | 7.5106371 |
| LOC411693 | Kv channel-interacting protein 1 | -0.6772180 | 32.9774846 | 1.4184949 |
| LOC410003 | PERQ amino acid-rich with GYF domain-containing protein CG11148 | 0.0604189 | 32.9501911 | 8.8172387 |
| LOC410237 | uncharacterized LOC410237 | -0.0949930 | 32.9380934 | 5.1511831 |
| LOC408922 | discoidin domain-containing receptor 2-like | -0.5374272 | 32.9318321 | 1.1811560 |
| LOC410943 | ras-related protein Rap-2a | -0.7441703 | 32.8762919 | 1.2646345 |
| LOC102655915 | uncharacterized LOC102655915 | -0.2291718 | 32.8391401 | 0.9392391 |
| LOC551130 | protein tincar | -0.1315560 | 32.8017136 | 5.1923904 |
| LOC724300 | uncharacterized LOC724300 | -0.0235483 | 32.7321082 | 3.4749415 |
| LOC413383 | carbonic anhydrase-related protein 10 | -0.4837410 | 32.7225042 | 2.3132020 |
| LOC550914 | DNA ligase 1-like | -0.4772370 | 32.7215466 | 8.9622916 |
| LOC413583 | uncharacterized LOC413583 | 0.1754938 | 32.6553244 | 5.3909046 |
| LOC552589 | fat-like cadherin-related tumor suppressor homolog | -0.0500860 | 32.6166750 | 3.8831368 |
| LOC411812 | serine/threonine-protein kinase Doa | 0.0050216 | 32.5940074 | 7.4295266 |
| LOC410293 | C-type lectin mannose-binding isoform | -0.3260087 | 32.4887030 | 6.1158300 |
| LOC727363 | mediator of RNA polymerase II transcription subunit 15-like | 0.4169201 | 32.4482106 | 2.4662658 |
| DHRS4 | dehydrogenase/reductase (SDR family) member 4 | 0.2066491 | 32.3628060 | 7.1557078 |
| Ef-1a-f1 | translation elongation factor eEF-1 alpha chain | -0.7060997 | 32.1935940 | 4.9466803 |
| LOC725318 | transmembrane protein 114 | 0.0810451 | 32.0970866 | 2.9847157 |
| LOC413873 | S phase cyclin A-associated protein in the endoplasmic reticulum | 0.1885233 | 32.0105190 | 4.4406054 |
| LOC409703 | uncharacterized LOC409703 | -0.0316831 | 31.9713048 | 3.8627126 |
| LOC410882 | trithorax group protein osa | -0.4297340 | 31.9689110 | 1.4582912 |
| LOC410669 | single-minded homolog 2 | -0.7900246 | 31.8542402 | 1.7772508 |
| LOC725204 | tyrosine aminotransferase | 0.1200440 | 31.8396965 | 5.0063610 |
| LOC411553 | protein bunched, class 2/F/G isoform | 0.2821771 | 31.7638531 | 5.8946929 |
| LOC100576948 | uncharacterized LOC100576948 | -0.0902943 | 31.7278874 | 0.1286153 |
| LOC725453 | guanine nucleotide-binding protein subunit gamma-e | -0.8308003 | 31.7154317 | 3.3902015 |
| LOC107965830 | histone-lysine N-methyltransferase SETMAR-like | 0.0868249 | 31.6196767 | 3.6418416 |
| LOC408976 | protein kinase shaggy | -0.3175545 | 31.4394909 | 8.8920607 |
| LOC409206 | tripartite motif-containing protein 2-like | -0.2623072 | 31.3292751 | 4.1631341 |
| LOC412959 | uncharacterized LOC412959 | -0.2801176 | 31.2980887 | 6.6277253 |
| LOC409468 | A disintegrin and metalloproteinase with thrombospondin motifs 8 | -0.0146113 | 31.2230614 | 6.0769171 |
| LOC413032 | tankyrase | 0.2827140 | 31.2180223 | 4.4254127 |
| LOC100577879 | carbonic anhydrase-related protein 10 | -0.2488939 | 31.0542824 | 3.7003417 |
| LOC411536 | E3 ubiquitin-protein ligase HERC2 | 0.1554111 | 31.0251979 | 7.5004420 |
| LOC409619 | uncharacterized LOC409619 | 1.0246105 | 30.7502226 | 11.7008397 |
| LOC412459 | ankyrin repeat domain-containing protein 13D | 0.0514051 | 30.7278015 | 5.1506291 |
| LOC410613 | major facilitator superfamily domain-containing protein 6 | -0.3515417 | 30.7083966 | 4.0076828 |
| LOC409107 | homeobox protein 5 | 0.0847104 | 30.6039661 | 6.0241387 |
| LOC107964025 | uncharacterized LOC107964025 | -0.8031130 | 30.5988425 | 1.5184107 |
| LOC100576222 | heart- and neural crest derivatives-expressed protein 1 | 0.0159161 | 30.5559594 | 1.8955443 |
| LOC100576902 | uncharacterized LOC100576902 | -0.0895358 | 30.4474638 | 1.4881460 |
| LOC410994 | tubulin beta chain-like | 0.0547981 | 30.4262914 | 7.2611978 |
| LOC411209 | uncharacterized LOC411209 | -0.0811425 | 30.3687972 | 2.6746572 |
| LOC107965748 | splicing factor 3B subunit 4-like | -0.3489999 | 30.2786348 | 0.4878622 |
| LOC107965985 | uncharacterized LOC107965985 | -0.2146784 | 30.1521557 | 0.6785021 |
| LOC102655212 | uncharacterized LOC102655212 | -0.5513212 | 30.0793997 | 2.5912646 |
| LOC411652 | zinc finger protein 879-like | -0.0222554 | 30.0224991 | 4.8200106 |
| Kr | krueppel | -0.6807989 | 29.9629332 | 0.4389216 |
| LOC100577551 | eukaryotic translation initiation factor 5B-like | -0.1577640 | 29.9608380 | 3.6542542 |
| LOC724422 | homeobox protein Hox-B1a | -0.8134019 | 29.9498397 | 4.8374692 |
| LOC100577692 | transcription factor btd | -0.5907109 | 29.9443153 | 2.5589906 |
| LOC412476 | BTB/POZ domain-containing protein 9 | 0.0717640 | 29.8784443 | 2.2658518 |
| LOC724373 | homeobox protein Nkx-2.5-like | -0.2794125 | 29.8722220 | -0.4090882 |
| Gb15078 | GB15078 protein | -0.7457882 | 29.8380392 | 1.0862886 |
| LOC413237 | slit homolog 1 protein-like | -0.3685607 | 29.8063527 | 4.6144444 |
| LOC726399 | transcriptional activator protein Pur-beta | 0.3050596 | 29.7998044 | 7.6452295 |
| LOC100577365 | homeobox protein invected-like | 0.1915344 | 29.7934976 | 2.9569117 |
| LOC725155 | serine/arginine repetitive matrix protein 1 | 0.1005302 | 29.7650782 | 9.4326142 |
| LOC100577343 | uncharacterized LOC100577343 | -0.3211262 | 29.7610619 | 3.4538435 |
| LOC102653931 | uncharacterized LOC102653931 | 0.2603823 | 29.7357725 | 1.7075136 |
| LOC102656246 | uncharacterized LOC102656246 | -0.6028367 | 29.7289388 | 2.0790704 |
| LOC410944 | ATP-binding cassette sub-family C member Sur | -0.2531663 | 29.6994035 | 4.8545804 |
| LOC726953 | secretin receptor-like | -0.2777071 | 29.6818191 | 2.7807412 |
| LOC725960 | neurofilament heavy polypeptide | -0.7516234 | 29.6155452 | 10.7911668 |
| LOC411586 | uncharacterized LOC411586 | -0.3620609 | 29.6136911 | 7.1292054 |
| LOC102654166 | uncharacterized LOC102654166 | 0.0962715 | 29.5783687 | 2.2066625 |
| LOC100578813 | uncharacterized LOC100578813 | -0.2718561 | 29.4171223 | 4.9038014 |
| LOC726124 | segmentation protein Runt-like | -0.6287346 | 29.3688498 | 1.6402001 |
| LOC552099 | homeotic protein empty spiracles | -0.8836141 | 29.3450237 | 5.1096824 |
| LOC410553 | protein daughterless | 0.1857667 | 29.3087384 | 6.0578009 |
| LOC551165 | innexin inx3 | 0.7133019 | 29.2928562 | 6.8661293 |
| LOC107965007 | uncharacterized LOC107965007 | 0.1510877 | 29.2773390 | -0.6995139 |
| LOC107963958 | E3 ubiquitin-protein ligase MIB1-like | 0.3898572 | 29.2677044 | 2.9098222 |
| LOC409691 | signal peptide peptidase-like 3 | 0.2065047 | 29.2483144 | 4.9314120 |
| LOC107965499 | uncharacterized LOC107965499 | 0.0122362 | 29.2238431 | 0.4791885 |
| Pkc | protein kinase C | -0.1106106 | 29.1990244 | 4.5939363 |
| GluCl | glutamate-gated chloride channel | -0.2229695 | 29.1376764 | 3.9108538 |
| LOC100577997 | CAPA peptides-like | -0.7239646 | 29.1183569 | -0.3030708 |
| LOC107965828 | cholesterol 7-desaturase-like | -0.1194431 | 29.0504185 | 1.2985562 |
| LOC411907 | cytoplasmic polyadenylation element-binding protein 1 | 0.3410551 | 29.0371852 | 1.1333672 |
| LOC724281 | homeotic protein antennapedia-like | -0.3986107 | 29.0114307 | 0.9581251 |
| LOC100578486 | uncharacterized LOC100578486 | -0.0871668 | 28.9816233 | 3.2600907 |
| LOC100578783 | uncharacterized LOC100578783 | 0.5637479 | 28.9279057 | 2.9584392 |
| nanos | protein nanos | -1.1370503 | 28.8625121 | 4.2653339 |
| LOC102653844 | uncharacterized LOC102653844 | -0.0439788 | 28.8586426 | 1.4982187 |
| LOC408381 | sodium- and chloride-dependent GABA transporter 1 | -1.0189247 | 28.7777673 | 0.5040485 |
| LOC410837 | microsomal glutathione S-transferase 1 | -0.0805007 | 28.7509650 | 6.7739949 |
| LOC107965254 | uncharacterized LOC107965254 | 0.3587231 | 28.7045163 | -0.9656049 |
| LOC409843 | myosin heavy chain, muscle | -0.2262643 | 28.6107815 | 10.6457276 |
| LOC107964149 | uncharacterized LOC107964149 | -0.6446253 | 28.4489156 | 0.9379735 |
| Eth | ecdysis triggering hormone | -0.2361299 | 28.3896382 | 2.3053496 |
| LOC551338 | uncharacterized LOC551338 | -0.1866364 | 28.3573309 | 3.8822274 |
| EF1a-F2 | elongation factor 1-alpha F2 | 0.1778001 | 28.3030201 | 13.4183999 |
| LOC408944 | lysine-specific demethylase 3B | -0.0617819 | 28.1699527 | 9.5947617 |
| LOC411336 | uncharacterized LOC411336 | 0.7112963 | 28.1686544 | 4.5501032 |
| LOC102655546 | E3 ubiquitin-protein ligase MYCBP2-like | 0.0945917 | 28.1624907 | 2.5871242 |
| LOC410270 | acetylcholinesterase | -0.0543043 | 28.1552313 | 4.1770318 |
| LOC408729 | uncharacterized LOC408729 | -0.1486557 | 28.1491017 | 4.7490095 |
| LOC410563 | uncharacterized LOC410563 | -0.5028258 | 28.0714046 | 2.3433133 |
| LOC408810 | rap guanine nucleotide exchange factor 2-like | -0.0488482 | 28.0635671 | 5.9976321 |
| LOC107965535 | uncharacterized LOC107965535 | -0.0435174 | 27.9525942 | 0.8599294 |
| Syt1 | synaptotagmin 1 | -0.3211429 | 27.9312626 | 2.8509419 |
| LOC408702 | SAGA-associated factor 29 | 0.1104511 | 27.6892992 | 5.3744094 |
| LOC100578727 | uncharacterized LOC100578727 | 0.0496692 | 27.6366355 | 3.6576285 |
| LOC100578870 | uncharacterized LOC100578870 | -0.0138558 | 27.6195564 | 2.5621625 |
| LOC107964518 | uncharacterized LOC107964518 | -0.9207649 | 27.5530023 | 3.8098608 |
| LOC413934 | sodium-independent sulfate anion transporter-like | -0.1935221 | 27.5156810 | 4.5728432 |
| LOC408791 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II | -0.1008782 | 27.4634142 | 4.6885793 |
| LOC102655822 | uncharacterized LOC102655822 | -0.4695419 | 27.4023500 | 1.5762133 |
| LOC724375 | ski oncogene | 0.2522950 | 27.3036686 | 4.3200604 |
| LOC409822 | enhancer of split m7 protein-like | -0.1705859 | 27.2956289 | 3.8879308 |
| LOC724188 | protein transport protein Sec61 subunit beta | -0.2125661 | 27.2950768 | 7.7594883 |
| LOC724319 | netrin-1-like | -0.4693803 | 27.2842960 | 1.2622770 |
| LOC725999 | uncharacterized LOC725999 | 0.4118361 | 27.2035094 | 3.8502811 |
| LOC102654777 | organic cation transporter protein | 0.5520674 | 27.1160082 | 4.7163662 |
| LOC551454 | voltage-dependent calcium channel subunit alpha-2/delta-3 | -0.3552402 | 27.0898892 | 1.9681572 |
| LOC727091 | forkhead box protein O | 0.0735853 | 27.0539367 | 5.0485908 |
| LOC411556 | cytosolic carboxypeptidase 2 | -0.7279948 | 26.9756599 | 1.6746104 |
| LOC406124 | gamma-aminobutyric acid receptor subunit beta | -0.7065427 | 26.9459785 | 1.5778769 |
| LOC550811 | protein timeless homolog | 0.4676015 | 26.9359753 | 5.2805285 |
| LOC551848 | protocadherin-like wing polarity protein stan | 0.1494073 | 26.8838485 | 5.7845554 |
| LOC726514 | adenylate cyclase type 6 | 0.0354640 | 26.8471697 | 1.7624934 |
| LOC724706 | myosin-10 | -0.3277239 | 26.8166175 | 4.9351057 |
| LOC100578051 | uncharacterized LOC100578051 | -0.6179186 | 26.7510095 | 3.7262462 |
| LOC725800 | fibrillin-2 | -0.1336217 | 26.7348912 | 3.3614037 |
| LOC107965124 | uncharacterized LOC107965124 | -0.4052384 | 26.7306549 | 4.0939838 |
| LOC410562 | serine/threonine-protein kinase SBK1 | -0.3103506 | 26.7177480 | 3.1282227 |
| LOC725053 | protein odd-skipped | -0.7580196 | 26.6685543 | 0.9683736 |
| LOC410967 | ABC transporter G family member 22 | 0.2341765 | 26.6385573 | 4.3263409 |
| LOC100577981 | insulin-like growth factor-binding protein complex acid labile subunit | 0.0247078 | 26.5629470 | 6.3925063 |
| LOC409000 | cell adhesion molecule 2-like | -0.8292875 | 26.5088748 | 1.4925184 |
| LOC726358 | huntingtin | 0.1544566 | 26.5030717 | 6.4154366 |
| LOC552641 | 39S ribosomal protein L2, mitochondrial | 0.0531292 | 26.4866476 | 7.4506773 |
| LOC100576805 | chromatin assembly factor 1 subunit A-B | -0.5282128 | 26.4796157 | 5.5605549 |
| LOC107966103 | uncharacterized LOC107966103 | -0.3262486 | 26.3605774 | 7.3277626 |
| LOC411014 | malate dehydrogenase, cytoplasmic | -0.1684549 | 26.3513634 | 8.3220886 |
| LOC413582 | Allatostatin A receptor | 0.1071162 | 26.3285616 | 2.0576574 |
| LOC100577978 | uncharacterized LOC100577978 | -0.3387587 | 26.3242081 | 0.6072669 |
| LOC724270 | crustacean hyperglycemic hormones | -0.7388124 | 26.3214922 | 1.6458364 |
| LOC410233 | extracellular sulfatase SULF-1 homolog | -0.5388279 | 26.2925895 | 5.7324782 |
| LOC551020 | probable protein phosphatase 2C T23F11.1 | -0.0755232 | 26.2755673 | 3.0742064 |
| LOC725106 | UDP-glucuronosyltransferase 1-8 | -0.2766770 | 26.2584877 | 4.2742501 |
| LOC408614 | uncharacterized LOC408614 | -0.6535839 | 26.1520855 | 0.6436750 |
| LOC100578031 | BTB/POZ domain-containing protein 6-B | -0.1715686 | 26.0969060 | 3.3587016 |
| LOC726243 | flotillin-2 | 0.2988324 | 26.0961368 | 4.5519530 |
| LOC724178 | uncharacterized LOC724178 | -0.0729555 | 25.9029201 | 5.4501307 |
| LOC551895 | serine/threonine-protein kinase 17A-like | 0.6424667 | 25.8980796 | 6.2396326 |
| LOC724310 | uncharacterized LOC724310 | -0.2232258 | 25.8609657 | 1.6185458 |
| LOC410415 | ras-related protein M-Ras-like | -0.2201572 | 25.8165519 | 3.4715520 |
| LOC412965 | synaptotagmin-14 | -0.0354079 | 25.7511089 | 3.0243371 |
| LOC410658 | LIM/homeobox protein Lhx3 | -0.3857828 | 25.7012297 | 2.7717088 |
| LOC551500 | phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit delta isoform | 0.0304618 | 25.5944837 | 6.1419077 |
| LOC408471 | brefeldin A-inhibited guanine nucleotide-exchange protein 3 | -0.3279389 | 25.5486143 | 3.6917682 |
| LOC410261 | echinoderm microtubule-associated protein-like CG42247 | -0.3622354 | 25.5012049 | 1.8297119 |
| LOC408278 | tyrosine-protein kinase Drl | -0.0224872 | 25.2432032 | 2.0063981 |
| LOC410642 | homeobox protein abdominal-B | -0.4401805 | 25.2295582 | 3.5095996 |
| LOC724832 | innexin inx2 | 0.4502327 | 25.2000325 | 7.7095798 |
| LOC100578705 | titin homolog | 0.0728231 | 25.1118274 | 8.5556239 |
| LOC725906 | transcription initiation factor TFIID subunit 3-like | -0.2404116 | 25.1058682 | 3.7499032 |
| LOC412175 | SH3 domain-containing RING finger protein 3 | -0.1441411 | 25.0384958 | 5.1298943 |
| LOC412799 | moesin/ezrin/radixin homolog 1 | -0.0685051 | 25.0170243 | 7.7011368 |
| LOC100576912 | cyclic AMP response element-binding protein A | 0.0743298 | 24.9287927 | 5.9010510 |
| LOC100577092 | uncharacterized LOC100577092 | -1.0736380 | 24.9079225 | 0.4434647 |
| LOC409105 | uncharacterized LOC409105 | -0.8450942 | 24.8882854 | 3.6185824 |
| LOC410486 | 40S ribosomal protein SA | 0.1151327 | 24.8278596 | 11.1234831 |
| LOC724252 | homeotic protein deformed | -0.3319744 | 24.7910826 | 1.4001749 |
| LOC412665 | zinc finger protein Pegasus-like | -0.0397866 | 24.7585421 | 5.3434966 |
| LOC408862 | prolyl 4-hydroxylase subunit alpha-1 | -0.0981295 | 24.7543364 | 6.8063823 |
| LOC410648 | homeotic protein proboscipedia | -0.7072978 | 24.4531745 | 0.7923262 |
| LOC100578294 | dynein intermediate chain 2, axonemal-like | -1.0602861 | 24.4420821 | -0.0163176 |
| LOC724622 | DNA-binding protein RFX7 | 0.3795279 | 24.4200104 | 6.0114444 |
| LOC725629 | DNA-binding protein D-ETS-6-like | 0.0993965 | 24.3887711 | 0.2033217 |
| LOC409124 | twisted gastrulation protein homolog 1-A | -0.6212432 | 24.3798052 | 4.3406342 |
| LOC102654946 | uncharacterized LOC102654946 | -0.7662839 | 24.2033909 | 0.8447072 |
| LOC552396 | uncharacterized LOC552396 | 0.1488441 | 24.1806824 | 4.7728879 |
| LOC410489 | myosin-IIIb | 0.4021799 | 24.1585770 | 5.1300874 |
| LOC409196 | alanine aminotransferase 1 | -0.3066341 | 24.0834755 | 7.4871245 |
| LOC725571 | protein transport protein Sec61 subunit alpha | -0.1575185 | 24.0136730 | 9.0823684 |
| LOC727370 | uncharacterized LOC727370 | -0.0894209 | 23.8596084 | 5.7709936 |
| LOC726840 | BET1 homolog | -0.1252918 | 23.8177877 | 3.3133173 |
| LOC410299 | ankyrin repeat domain-containing protein SOWAHB | -0.1100318 | 23.7937437 | 4.1072828 |
| LOC409908 | tyrosine-protein kinase CSK | 0.0257330 | 23.7760221 | 5.6893588 |
| LOC413190 | calcium-dependent protein kinase 4-like | -0.1849998 | 23.6793144 | 4.2046748 |
| LOC726670 | RING finger protein 207-like | -0.1787346 | 23.6737342 | 3.8894618 |
| LOC409718 | PAB-dependent poly(A)-specific ribonuclease subunit PAN3 | 0.0379891 | 23.6682024 | 5.0760714 |
| LOC552100 | protein ovo | -0.3473352 | 23.6380485 | 5.0460367 |
| LOC100577603 | uncharacterized LOC100577603 | -0.5032961 | 23.6262654 | 4.2421284 |
| LOC413772 | suppressor of cytokine signaling 7 | 0.1628050 | 23.6233853 | 4.3080222 |
| nAChRa7 | nicotinic acetylcholine receptor alpha7 subunit | -0.5828342 | 23.5756695 | 0.1398780 |
| LOC102655143 | ABC transporter F family member 4-like | 0.0487826 | 23.5568008 | 6.1252390 |
| LOC102653815 | cytochrome b reductase 1-like | -0.2837632 | 23.5517562 | 4.7143622 |
| LOC102656412 | uncharacterized LOC102656412 | 0.1619636 | 23.5099347 | 3.0393324 |
| LOC408351 | serine-rich adhesin for platelets | -0.1609429 | 23.4826526 | 7.3070707 |
| LOC100578168 | glycoprotein 3-alpha-L-fucosyltransferase A | -0.4423641 | 23.4441591 | 3.9633686 |
| LOC726252 | titin homolog | -0.1805579 | 23.4126702 | 8.6744889 |
| LOC552374 | protein Wnt-1 | -0.1311659 | 23.3769230 | 2.5771799 |
| LOC408852 | protein similar-like | -0.3690858 | 23.3140738 | 8.7336728 |
| LOC552757 | probable peroxisomal acyl-coenzyme A oxidase 1 | 0.0380652 | 23.2926152 | 5.4483853 |
| LOC100577504 | uncharacterized LOC100577504 | -0.1174363 | 23.1753515 | 4.9072014 |
| Syx1A | syntaxin 1A | -0.3997757 | 23.0830551 | 7.2400867 |
| LOC551115 | microtubule-associated protein tau-like | -0.0448576 | 23.0209971 | 3.9343841 |
| LOC551837 | long-chain-fatty-acid–CoA ligase ACSBG2 | 0.2807525 | 23.0092963 | 8.9230852 |
| LOC411827 | protein roadkill | -0.0015269 | 22.9610973 | 7.6075275 |
| LOC408597 | U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 2 | 0.2167007 | 22.9495988 | 4.6864993 |
| LOC413076 | ecdysone-induced protein 78C | -0.2274537 | 22.9263148 | 3.4348186 |
| LOC410361 | uncharacterized LOC410361 | 0.2129192 | 22.8336408 | 4.7496452 |
| LOC413034 | rho-related BTB domain-containing protein 1 | 0.4129490 | 22.8266292 | 2.6818069 |
| sGC-alpha1 | soluble guanylyl cyclase alpha 1 subunit | -0.5373770 | 22.8230237 | -0.2113035 |
| LOC411854 | heat shock factor protein | 0.0942938 | 22.7996508 | 6.4244320 |
| LOC725964 | uncharacterized LOC725964 | 0.0048767 | 22.6932853 | 4.3990618 |
| LOC410573 | nephrin-like | 0.4736988 | 22.4257796 | 2.5462797 |
| LOC408964 | uncharacterized LOC408964 | 0.5281983 | 22.4131128 | 8.4131741 |
| LOC408987 | sortilin-related receptor | -0.1178296 | 22.3578820 | 7.7309405 |
| Gat-1B | GABA neurotransmitter transporter-1B | -0.8922700 | 22.3325248 | 2.3584439 |
| LOC107964464 | uncharacterized LOC107964464 | -0.4193522 | 22.3293193 | 0.1939935 |
| LOC409931 | protein FAM69C | -0.0421171 | 22.2932053 | 2.4460993 |
| LOC409231 | dipeptidase 1-like | 0.2055806 | 22.2650784 | 1.1130206 |
| LOC413145 | eukaryotic translation initiation factor 3 subunit F | 0.2816988 | 22.2090393 | 8.2424506 |
| LOC408435 | POU domain, class 6, transcription factor 2 | -0.6843658 | 22.1767847 | 4.5813095 |
| LOC550706 | probable phosphorylase b kinase regulatory subunit alpha | -0.2003109 | 22.1449000 | 5.3656620 |
| LOC408409 | UPF0430 protein CG31712 | -0.1372610 | 22.1219022 | 6.4451879 |
| LOC412093 | serine/threonine-protein phosphatase 1 regulatory subunit 10 | -0.1110779 | 22.0641252 | 7.4235049 |
| LOC408323 | dynactin subunit 5 | 0.4405106 | 22.0550433 | 5.0783065 |
| LOC107964206 | zinc finger protein 717-like | -0.2698707 | 22.0136459 | 4.5088314 |
| LOC411253 | uncharacterized LOC411253 | -0.1384582 | 21.9556338 | 4.0475698 |
| LOC410953 | MLX-interacting protein | 0.4259863 | 21.9267772 | 8.2076854 |
| LOC100578137 | uncharacterized LOC100578137 | -0.2427134 | 21.8957051 | 1.4010720 |
| LOC725596 | leukocyte receptor cluster member 8 homolog | -0.0933039 | 21.8907407 | 6.8114546 |
| LOC724721 | farnesol dehydrogenase-like | -0.8187887 | 21.7997642 | 8.9992331 |
| LOC411297 | insulin-like peptide receptor | -0.9785068 | 21.7909588 | 5.4452955 |
| LOC102653923 | uncharacterized LOC102653923 | 0.5542253 | 21.7842397 | 0.1452704 |
| LOC102654720 | uncharacterized LOC102654720 | -0.7566527 | 21.7666525 | 0.0489642 |
| LOC410363 | uncharacterized LOC410363 | -0.3592778 | 21.7379920 | 3.3653014 |
| LOC551609 | uncharacterized LOC551609 | 0.1802085 | 21.7326970 | 4.8312988 |
| LOC408788 | UDP-glucuronosyltransferase 1-3-like | 0.6980787 | 21.7001963 | 7.9490265 |
| LOC724548 | integrin alpha-PS2 | -0.2070163 | 21.6988555 | 5.9404546 |
| LOC100577620 | uncharacterized LOC100577620 | 0.1842642 | 21.6556157 | 1.5308422 |
| LOC100578512 | hydrocephalus-inducing protein-like | -0.1492925 | 21.6522628 | 1.4602338 |
| LOC408863 | J domain-containing protein | -0.1741996 | 21.5940186 | 5.0328903 |
| LOC726021 | uncharacterized LOC726021 | 0.2702984 | 21.5346109 | 7.0290238 |
| LOC107965060 | uncharacterized LOC107965060 | -0.2311358 | 21.5141424 | -0.1514651 |
| LOC410464 | protein escargot | -0.5998325 | 21.4835469 | 1.9407098 |
| LOC408449 | thyrotroph embryonic factor | 0.0674284 | 21.4203216 | 7.7238938 |
| LOC408301 | type 1 phosphatidylinositol 4,5-bisphosphate 4-phosphatase | 0.0412106 | 21.3845098 | 4.9273240 |
| LOC100379261 | uncharacterized LOC100379261 | -0.1337559 | 21.3223142 | 3.7757835 |
| LOC726470 | solute carrier organic anion transporter family member 1A5-like | -0.0827914 | 21.2550962 | 6.1756883 |
| LOC412777 | sodium/potassium/calcium exchanger Nckx30C | -0.8098829 | 21.2435710 | 0.2738770 |
| LOC410885 | T-box protein 2-like | 0.0405898 | 21.2211825 | 2.2330728 |
| LOC408888 | leucine-rich repeats and immunoglobulin-like domains protein 1 | 0.5135997 | 21.1211275 | 4.2807420 |
| LOC413550 | neuropeptide CCHamide-2 receptor-like | -0.5431333 | 21.0909330 | 1.2839417 |
| LOC408388 | tubulin alpha-1 chain | 0.0138025 | 21.0667108 | 10.3575102 |
| LOC100578556 | putative uncharacterized protein DDB_G0282133 | 0.0495816 | 20.8952477 | 5.6531011 |
| LOC725581 | anion exchange protein 2 | 0.4620472 | 20.8429867 | 5.7497393 |
| LOC408775 | heterogeneous nuclear ribonucleoprotein R | -0.0572167 | 20.8170980 | 9.6532663 |
| LOC412540 | carcinine transporter | 0.7651296 | 20.7954467 | 6.4088128 |
| LOC409714 | mucin-5AC | -0.2545730 | 20.7942637 | 4.9802236 |
| LOC102654046 | protein winged eye-like | -0.0549243 | 20.7285553 | 1.5752599 |
| LOC107965020 | G patch domain-containing protein 8-like | 0.1250148 | 20.7114953 | 4.2203524 |
| LOC100577699 | 5-formyltetrahydrofolate cyclo-ligase | -0.2121207 | 20.6345574 | 5.5817756 |
| LOC410172 | translocating chain-associated membrane protein 1-like 1 | -0.5898685 | 20.6254123 | 7.6647481 |
| LOC409666 | ABC transporter G family member 20 | -0.7739699 | 20.6056757 | 6.4163396 |
| LOC413333 | hemicentin-1-like | -0.2522519 | 20.5705495 | -0.6010248 |
| LOC100577815 | uncharacterized LOC100577815 | -0.3746257 | 20.5229550 | 0.3735837 |
| LOC552082 | vinculin | 0.2593682 | 20.4549238 | 7.2271025 |
| LOC409852 | putative uncharacterized protein DDB_G0271606 | -0.1050486 | 20.2812994 | 8.5863705 |
| LOC550955 | putative gamma-glutamylcyclotransferase CG2811 | -0.1219851 | 20.2811646 | 7.4367822 |
| LOC552397 | Krueppel-like factor 6 | -0.4048690 | 20.2206166 | 6.3490385 |
| LOC552678 | enolase | 0.0980524 | 20.2129919 | 9.7145811 |
| LOC411349 | sphingosine kinase 2 | 0.1696177 | 20.1760294 | 5.2827286 |
| LOC409402 | uncharacterized LOC409402 | 0.3783163 | 20.1680012 | 4.0622419 |
| LOC100578739 | neuropeptide Y receptor-like | -0.2061346 | 20.1340532 | 1.4536834 |
| LOC410004 | transcription initiation factor TFIID subunit 10-like | 0.0317029 | 20.1139759 | 5.3231165 |
| LOC408622 | protein henna | -0.3409855 | 20.1135756 | 6.3751817 |
| LOC551865 | uncharacterized LOC551865 | 0.7064066 | 20.1011116 | 4.8526072 |
| LOC410098 | WD repeat and FYVE domain-containing protein 2 | 0.2029421 | 20.0318503 | 4.9348044 |
| LOC413680 | epsin-2 | 0.2553098 | 20.0213041 | 6.3806734 |
| LOC102656505 | uncharacterized LOC102656505 | -0.1592076 | 19.9973507 | 2.6830921 |
| Vha16 | vacuolar H+ ATP synthase 16 kDa proteolipid subunit | -0.1713683 | 19.9752269 | 7.6443176 |
| LOC100576293 | zinc finger protein 182 | 0.2505720 | 19.9666086 | 1.8816446 |
| LOC100576956 | metalloproteinase inhibitor 3 | -0.1383085 | 19.9477260 | 4.2717874 |
| LOC724379 | tubulin polyglutamylase TTLL4-like | 0.3068185 | 19.8462802 | 2.4768127 |
| LOC725389 | box A-binding factor-like | 0.1352306 | 19.8178780 | 6.5237065 |
| LOC411213 | discoidin domain-containing receptor 2 | -0.0238923 | 19.8124798 | 1.0798466 |
| LOC551356 | nesprin-1 | -0.2859834 | 19.7300735 | 9.1405549 |
| LOC408901 | actin-related protein 2/3 complex subunit 1A | 0.0381072 | 19.5754972 | 7.9064871 |
| LOC411753 | TBC1 domain family member 25 | 0.1066020 | 19.4633006 | 4.8520173 |
| LOC725803 | slit homolog 1 protein-like | -0.2937355 | 19.3888345 | 0.6606987 |
| LOC552552 | uncharacterized LOC552552 | -0.2085559 | 19.2924822 | 3.4134337 |
| nAChRb1 | nicotinic acetylcholine receptor beta1 subunit | -0.7540516 | 19.2229704 | -0.5278494 |
| LOC551364 | homeobox protein SIX3 | -0.6436543 | 19.1731122 | 2.0588397 |
| LOC724594 | ADP-ribosylation factor-like protein 4C | 0.2283457 | 19.1145215 | 4.8594807 |
| LOC100578246 | myosin-7B-like | -0.3533534 | 19.0673832 | 4.8298918 |
| LOC411105 | luciferin 4-monooxygenase | -0.4197493 | 18.9930099 | 3.0849404 |
| LOC726522 | ketohexokinase-like | -0.5847865 | 18.9884160 | 4.7526085 |
| LOC551891 | molybdenum cofactor biosynthesis protein 1 | -0.3422235 | 18.9599329 | 6.6999624 |
| LOC411347 | peripheral plasma membrane protein CASK | -0.4600168 | 18.8991287 | 6.3966950 |
| LOC551765 | uncharacterized LOC551765 | 0.2331411 | 18.8089278 | 5.5722706 |
| LOC413040 | probable G-protein coupled receptor 52 | -0.4843164 | 18.7909626 | 0.5006503 |
| LOC410732 | 3-phosphoinositide-dependent protein kinase 1 | -0.2226384 | 18.7847155 | 7.3009095 |
| Gtpx1 | glutathione peroxidase-like 1 | 0.0613977 | 18.7548237 | 7.0229589 |
| LOC107964873 | uncharacterized LOC107964873 | -0.1316954 | 18.7245935 | -0.5681859 |
| LOC550906 | uncharacterized LOC550906 | -0.7412404 | 18.7058849 | 0.0932859 |
| LOC410399 | protein bowel | 0.5042213 | 18.7006208 | 4.3244877 |
| LOC550976 | armadillo segment polarity protein | -0.1519512 | 18.6671256 | 5.9451600 |
| LOC409138 | synaptotagmin 7 | -1.1503641 | 18.6490352 | 1.8802662 |
| LOC552044 | uncharacterized LOC552044 | 0.0791646 | 18.6015550 | 5.4969045 |
| LOC726559 | uncharacterized LOC726559 | -0.3342498 | 18.5911739 | 1.4737178 |
| LOC410133 | PDZ domain-containing RING finger protein 4 | -0.3168813 | 18.5871964 | 6.3823625 |
| LOC406139 | ankyrin-3 | -0.0647457 | 18.5411663 | 1.9426327 |
| LOC409510 | uncharacterized LOC409510 | -0.7145386 | 18.5074491 | 0.8505657 |
| LOC410041 | uncharacterized LOC410041 | 0.3403854 | 18.4787898 | 4.2172356 |
| LOC100577019 | protein quiver | -0.8607765 | 18.4738742 | 0.1527004 |
| LOC409845 | potassium voltage-gated channel subfamily H member 8 | 0.0667786 | 18.4580602 | 4.0409958 |
| LOC100577254 | potassium voltage-gated channel subfamily KQT member 1-like | -0.1638011 | 18.4518532 | 4.5633358 |
| LOC725033 | uncharacterized LOC725033 | -0.3423892 | 18.4079710 | 1.0713643 |
| LOC102656853 | uncharacterized LOC102656853 | -0.8602713 | 18.3681750 | 2.3554098 |
| LOC724652 | uncharacterized LOC724652 | -0.0737625 | 18.3635829 | 4.2225073 |
| LOC102655677 | uncharacterized LOC102655677 | -0.5116853 | 18.3259033 | 2.3596750 |
| LOC411724 | glycerol-3-phosphate acyltransferase 1, mitochondrial | 0.1781924 | 18.3043664 | 8.4953718 |
| LOC726268 | uncharacterized LOC726268 | 0.0495438 | 18.3008459 | 2.1992611 |
| LOC410867 | uncharacterized LOC410867 | 0.4647920 | 18.2549953 | 7.1249004 |
| LOC409771 | potassium channel subfamily K member 18-like | -0.0973263 | 18.2460425 | 3.0906740 |
| LOC724991 | phosphatidylinositol 4-phosphate 5-kinase type-1 alpha | -0.0775204 | 18.2426205 | 6.7944149 |
| LOC724976 | WD repeat-containing protein 26 | 0.2779493 | 18.1985600 | 5.7332993 |
| LOC100576797 | acyl-CoA Delta(11) desaturase | -1.2669607 | 18.1881588 | 2.5557059 |
| LOC412926 | dipeptidase 1-like | -0.7406104 | 18.1626728 | 2.5853361 |
| LOC725205 | odorant receptor 1 | 0.1959784 | 18.1053496 | 0.1630044 |
| LOC409489 | diphosphoinositol polyphosphate phosphohydrolase 1 | 0.2974893 | 18.0887819 | 5.3025419 |
| LOC552320 | uncharacterized LOC552320 | -0.2622392 | 18.0595983 | 7.7743896 |
| LOC412887 | A disintegrin and metalloproteinase with thrombospondin motifs 7-like | 0.1767070 | 18.0282603 | 0.2479165 |
| LOC410578 | sodium- and chloride-dependent glycine transporter 2 | 0.1995881 | 18.0000167 | 6.6721945 |
| LOC102654889 | zinc finger protein 37-like | 0.4876297 | 17.9817152 | 4.0204188 |
| LOC409401 | cyclic AMP-responsive element-binding protein 1 | 0.0463366 | 17.9727316 | 6.0286227 |
| LOC552311 | T-box transcription factor TBX10-like | -0.4122738 | 17.8879480 | 0.3713453 |
| LOC107964146 | uncharacterized LOC107964146 | -1.1662408 | 17.8070405 | 1.1775418 |
| LOC552850 | catenin alpha | 0.1869127 | 17.8048107 | 5.9547543 |
| LOC411147 | AP-2 complex subunit alpha | 0.1148713 | 17.7507809 | 6.3536594 |
| LOC410957 | uncharacterized LOC410957 | 0.2329707 | 17.6919815 | 3.0253784 |
| LOC724860 | probable cytochrome P450 301a1, mitochondrial | -0.7551182 | 17.6497110 | 2.3539732 |
| LOC409222 | cyclin G | -0.0694491 | 17.5616034 | 4.6431657 |
| LOC409200 | uncharacterized protein DDB_G0289975 | -0.0024506 | 17.5265715 | 6.3232557 |
| LOC724916 | uncharacterized LOC724916 | -0.4541770 | 17.5099263 | 0.2677136 |
| LOC100578437 | ataxin-7-like protein 1 | -0.3520344 | 17.4869896 | 3.3654805 |
| LOC551249 | uncharacterized LOC551249 | -0.5045548 | 17.4585248 | 1.6396772 |
| LOC726842 | optomotor-blind protein-like | -0.0681635 | 17.4117034 | 4.1403753 |
| LOC551688 | band 7 protein AGAP004871-like | -0.1118163 | 17.3781444 | 0.5318495 |
| LOC100577347 | SET and MYND domain-containing protein 4-like | 0.0068922 | 17.3698066 | 1.4655032 |
| LOC107964519 | uncharacterized LOC107964519 | -1.0744186 | 17.2347803 | 0.1783610 |
| LOC551353 | translocon-associated protein subunit alpha | -0.5516474 | 17.2334005 | 8.3197319 |
| LOC409441 | transmembrane protein 53 | -0.3837806 | 17.2298192 | 0.2889851 |
| LOC409467 | sodium-coupled monocarboxylate transporter 2-like | 0.0578903 | 17.2215571 | 1.4735821 |
| LOC724237 | prostaglandin E2 receptor EP3 subtype | -0.4522753 | 17.1130490 | 5.9187222 |
| LOC413998 | lateral signaling target protein 2 homolog | 0.2436761 | 17.0795288 | 5.7755312 |
| LOC408595 | locomotion-related protein Hikaru genki | -0.1572109 | 17.0740554 | 2.0561680 |
| LOC410743 | glucose dehydrogenase [FAD, quinone] | -1.9237357 | 17.0324254 | 3.6650807 |
| LOC550984 | uncharacterized LOC550984 | -0.1952895 | 16.9743452 | 2.5414017 |
| LOC100578001 | uncharacterized LOC100578001 | -0.1032093 | 16.9457146 | 0.0713092 |
| LOC100578776 | uncharacterized LOC100578776 | 0.4646734 | 16.9312452 | 2.5725729 |
| LOC724864 | TWiK family of potassium channels protein 18-like | -0.0913179 | 16.8999358 | 1.3634736 |
| LOC551328 | E3 ubiquitin-protein ligase RNF19A | 0.3244404 | 16.8133418 | 5.9071700 |
| LOC724634 | golgin subfamily B member 1 | -0.0432076 | 16.8021027 | 9.2109211 |
| LOC102654275 | uncharacterized LOC102654275 | 0.4149916 | 16.7747388 | 0.1698394 |
| LOC100577264 | uncharacterized LOC100577264 | 0.1039432 | 16.7415303 | 1.6942092 |
| LOC550964 | guanylate cyclase 32E | -0.4245613 | 16.7225895 | 4.6880190 |
| LOC413503 | TWiK family of potassium channels protein 18-like | -0.0516892 | 16.6657991 | 1.1698162 |
| LOC726283 | neuronal calcium sensor 2 | -0.1177825 | 16.6171791 | 3.8253884 |
| Arp1 | actin related protein 1 | -0.0357258 | 16.5993000 | 10.7436399 |
| Kr-h1 | kruppel homolog 1 | 0.7911354 | 16.5624856 | 5.4966790 |
| LOC726370 | uncharacterized LOC726370 | -0.6782196 | 16.5525180 | 5.1241303 |
| LOC410782 | huntingtin-interacting protein 1 | -0.1875425 | 16.5341191 | 6.3565733 |
| LOC725885 | Krueppel-like factor 6 | -0.4385516 | 16.5276119 | 5.5729739 |
| LOC409025 | apolipoprotein D | -0.6705574 | 16.5244796 | 4.1356829 |
| LOC100577283 | uncharacterized LOC100577283 | -0.4202341 | 16.4262529 | 2.5888355 |
| LOC102656549 | uncharacterized LOC102656549 | 0.1809976 | 16.3812002 | 1.1661423 |
| LOC726248 | chaoptin | 0.0334601 | 16.3739385 | 3.0781276 |
| LOC408824 | immunoglobulin-like and fibronectin type III domain containing 14 | 0.0193141 | 16.3721620 | 3.4321546 |
| LOC411285 | muscle LIM protein 1-like | -0.4414704 | 16.3421301 | 7.6999579 |
| LOC552114 | signal recognition particle 54 kDa protein | -0.0696474 | 16.3213437 | 7.9237358 |
| LOC100578631 | uncharacterized LOC100578631 | 0.1032952 | 16.3124585 | 5.7870662 |
| LOC102655436 | uncharacterized LOC102655436 | -0.3052770 | 16.2939229 | 1.9590377 |
| LOC408878 | protein mesh | -0.1804885 | 16.2822659 | 6.2942804 |
| LOC724914 | protein hairy-like | -0.3137362 | 16.2617730 | 0.2128039 |
| LOC725894 | protein rhomboid | 0.0116152 | 16.2522006 | 0.9156699 |
| LOC551154 | glucose-6-phosphate isomerase | -0.1455664 | 16.2426148 | 9.0947279 |
| LOC408607 | SEC23-interacting protein-like | -0.4853499 | 16.2283313 | 7.7148424 |
| LOC100577801 | zinc finger protein ush | 0.3243234 | 16.2136251 | 6.0619777 |
| LOC413827 | ras-related protein Rab-40C | 0.1550526 | 16.0626116 | 4.4591504 |
| LOC410067 | uncharacterized LOC410067 | -0.5576771 | 16.0533924 | 0.7841764 |
| LOC107965322 | gamma-interferon-inducible lysosomal thiol reductase-like | -0.3368869 | 16.0306085 | 4.4338838 |
| LOC726947 | TGF-beta-activated kinase 1 and MAP3K7-binding protein 3 | -0.4418676 | 16.0015287 | 4.6301452 |
| LOC102654970 | protein tipE | -0.5870145 | 15.9991038 | -0.1040847 |
| LOC100576355 | uncharacterized LOC100576355 | -0.4355866 | 15.9348197 | 1.2688573 |
| LOC551849 | L-galactose dehydrogenase-like | -0.4343562 | 15.9012957 | 4.3409136 |
| LOC726948 | suppressor of lurcher protein 1 | -0.2575217 | 15.8888930 | 1.9625793 |
| LOC411639 | cytoplasmic dynein 2 heavy chain 1 | -1.1845908 | 15.8444332 | -0.8225592 |
| LOC412354 | uncharacterized LOC412354 | -0.1465381 | 15.7965329 | 6.4913683 |
| LOC100577795 | probable serine/threonine-protein kinase DDB_G0282963 | 0.3648671 | 15.7885085 | 3.7937370 |
| LOC410630 | cGMP-specific 3’,5’-cyclic phosphodiesterase | 0.3169591 | 15.7666353 | 3.8339085 |
| LOC725923 | serine/threonine-protein kinase N | 0.3432690 | 15.7325208 | 6.3565143 |
| LOC724114 | uncharacterized LOC724114 | -0.8017342 | 15.7245773 | 2.0704025 |
| LOC100578236 | RNA-binding protein Musashi homolog Rbp6-like | -0.9950015 | 15.7036876 | 1.0920782 |
| LOC408670 | Down syndrome cell adhesion molecule-like protein Dscam2 | -0.0252317 | 15.6665017 | 3.7415077 |
| LOC726928 | ras guanine nucleotide exchange factor Y-like | -0.1000496 | 15.6236840 | 6.6376794 |
| LOC410320 | whirlin | -0.5226828 | 15.5539037 | 3.8416088 |
| Dop1 | dopamine receptor, D1 | -0.2236736 | 15.5122101 | 1.2546939 |
| LOC409674 | uncharacterized LOC409674 | -0.5648430 | 15.4994418 | 1.1252042 |
| LOC102656195 | uncharacterized LOC102656195 | -0.1339972 | 15.4901081 | 0.9197273 |
| LOC102656252 | uncharacterized LOC102656252 | -0.1322986 | 15.4534334 | -0.6775137 |
| LOC102655902 | uncharacterized LOC102655902 | -0.1065800 | 15.4334243 | 2.7290812 |
| LOC410246 | netrin receptor UNC5B-like | -0.6240693 | 15.4000614 | 1.7518422 |
| LOC412056 | organic cation transporter protein-like | 0.0965174 | 15.3866734 | 5.0011298 |
| LOC410979 | gamma-aminobutyric acid type B receptor subunit 1 | -0.3312167 | 15.3690441 | -0.7139474 |
| LOC100577498 | trichohyalin | -0.2975398 | 15.2460698 | 4.7432970 |
| LOC100576746 | uncharacterized LOC100576746 | -0.2217482 | 15.2448518 | 1.6667017 |
| LOC724752 | E3 ubiquitin-protein ligase TRIM71 | -0.6049829 | 15.2122860 | -0.1744607 |
| LOC102655100 | protein Cep78 homolog | -0.4174873 | 15.1651253 | 7.5500228 |
| LOC410570 | 85/88 kDa calcium-independent phospholipase A2 | 0.3513709 | 15.1583353 | 4.7498612 |
| E75 | ecdysone-induced protein 75 | -0.2218427 | 15.1163331 | 9.4179441 |
| LOC410231 | protein toll | 0.3414997 | 15.1159011 | 3.2119661 |
| LOC413053 | serine-threonine kinase receptor-associated protein | -0.2064371 | 15.0713335 | 8.4332108 |
| LOC107965337 | uncharacterized LOC107965337 | -1.1090233 | 15.0429624 | 1.2865419 |
| LOC107964300 | uncharacterized LOC107964300 | -0.2744665 | 15.0143584 | 0.4580233 |
| LOC102656352 | uncharacterized LOC102656352 | -0.3781290 | 14.9786015 | 0.6307218 |
| LOC726476 | alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase | 0.2602372 | 14.9729274 | 5.3807061 |
| LOC409348 | lethal(2) giant larvae protein homolog 1 | -0.4293473 | 14.9548466 | 7.8913552 |
| LOC409326 | 40S ribosomal protein S2 | -0.1119757 | 14.9163534 | 11.2405220 |
| LOC100577098 | enolase-phosphatase E1 | 0.2591550 | 14.8557269 | 6.2182846 |
| LOC724618 | cysteine-rich motor neuron 1 protein | -0.1595423 | 14.8516559 | 5.1896896 |
| LOC408339 | uncharacterized LOC408339 | -0.3031723 | 14.7744529 | 0.5743852 |
| LOC409057 | uncharacterized LOC409057 | 0.2140150 | 14.7277434 | 5.5113692 |
| LOC408523 | protein TRC8 homolog | 0.0691521 | 14.6330839 | 6.2371870 |
| LOC408478 | facilitated trehalose transporter Tret1-like | 0.6793711 | 14.6274284 | 7.1707495 |
| LOC408420 | RING finger protein nhl-1 | -0.4689399 | 14.6257399 | 7.0908927 |
| Smb | small ribonucleoprotein particle protein B | 0.3663754 | 14.5539602 | 6.4044538 |
| LOC102654676 | neurofilament heavy polypeptide-like | -0.3349674 | 14.5267774 | 1.1646554 |
| LOC100577472 | insulin gene enhancer protein ISL-1 | 0.1723216 | 14.4539737 | 2.9639527 |
| LOC552479 | multiple epidermal growth factor-like domains protein 10 | 0.2762411 | 14.4518459 | 6.0488086 |
| LOC411296 | silk gland factor 1-like | 0.6625758 | 14.4317275 | 3.7541591 |
| LOC552048 | flocculation protein FLO11 | 0.3397784 | 14.3601671 | 6.5975092 |
| LOC102655331 | uncharacterized LOC102655331 | -0.9286447 | 14.3224030 | -0.1331748 |
| LOC410379 | dual 3’,5’-cyclic-AMP and -GMP phosphodiesterase 11 | 0.1212164 | 14.2542204 | 7.1450443 |
| DopR2 | dopamine receptor 2 | -0.2409405 | 14.2292997 | -0.3039607 |
| LOC408547 | toxin 3FTx-Lei1 | -0.4245220 | 14.1757198 | 1.9908441 |
| LOC552443 | N-alpha-acetyltransferase 60 | -0.0883177 | 14.1710414 | 3.3189812 |
| LOC102656655 | protein outspread-like | 0.1330523 | 14.1228721 | 3.5711833 |
| Foxp | FoxP protein | 0.3686884 | 14.0753966 | 6.9135318 |
| LOC408754 | TNF receptor-associated factor 4 | -0.3053336 | 14.0440637 | 4.1117958 |
| LOC100576528 | uncharacterized LOC100576528 | 0.3118612 | 14.0339841 | 3.3597189 |
| LOC100577453 | calponin homology domain-containing protein DDB_G0272472-like | -0.5203273 | 14.0230673 | 0.5512906 |
| LOC408322 | uncharacterized LOC408322 | -0.2888845 | 14.0027332 | 4.5284887 |
| LOC412299 | muscarinic acetylcholine receptor DM1 | 0.0556890 | 13.9990775 | 4.3647674 |
| LOC100576547 | glucose dehydrogenase [FAD, quinone]-like | 0.3254832 | 13.9574233 | 4.3848992 |
| LOC408934 | choline O-acetyltransferase | -0.2385882 | 13.9539568 | -0.2796490 |
| LOC411343 | uncharacterized LOC411343 | -0.4508836 | 13.9007294 | 5.7323590 |
| LOC413207 | Na(+)/H(+) exchange regulatory cofactor NHE-RF1 | 0.0713224 | 13.8912323 | 7.2108843 |
| LOC551892 | cytoplasmic protein NCK1 | 0.0638456 | 13.8287405 | 6.7766951 |
| LOC102656892 | uncharacterized LOC102656892 | 0.4241109 | 13.7953017 | 1.3807766 |
| LOC409004 | ras-related protein Rab6 | -0.0015073 | 13.7656515 | 6.9677778 |
| LOC725335 | probable cytochrome P450 12a5, mitochondrial | -1.3121477 | 13.7549763 | -0.5013236 |
| LOC100577074 | uncharacterized LOC100577074 | -0.2304046 | 13.7159395 | 5.4607436 |
| LOC102654911 | uncharacterized LOC102654911 | -0.4445513 | 13.7141481 | 1.8752018 |
| LOC100578654 | uncharacterized LOC100578654 | 0.0794672 | 13.6873734 | 2.8383047 |
| LOC102656744 | uncharacterized LOC102656744 | 0.2473864 | 13.6704839 | 0.1584015 |
| LOC552211 | protein THEM6-like | -0.3556993 | 13.6330637 | 5.9473514 |
| LOC551844 | stromal cell-derived factor 2-like | -0.3917487 | 13.6267820 | 6.7641426 |
| LOC726743 | doublesex- and mab-3-related transcription factor A2 | -0.7414078 | 13.5573410 | 1.3528143 |
| NLG-4 | neuroligin 4 | -0.2387039 | 13.5266631 | 0.7472102 |
| LOC724787 | protein RUFY3 | -0.3319985 | 13.5251897 | 4.7720059 |
| LOC412956 | heparan sulfate glucosamine 3-O-sulfotransferase 1 | -0.1500640 | 13.5120949 | 0.9290560 |
| LOC406073 | homeobox protein prospero | -0.3969111 | 13.4887367 | 4.3993351 |
| LOC408619 | ubiquitin carboxyl-terminal hydrolase 3-like | 0.3978201 | 13.2816973 | 5.6252755 |
| LOC724736 | semaphorin-1A-like | -0.1096974 | 13.2756847 | 4.5110004 |
| LOC727454 | LON peptidase N-terminal domain and RING finger protein 1-like | 0.3078717 | 13.2468203 | 1.3333910 |
| LOC102654688 | uncharacterized LOC102654688 | -0.8189425 | 13.2440201 | 0.1913154 |
| LOC100577024 | odorant receptor 30a-like | 0.2431590 | 13.2174123 | 0.4798696 |
| LOC411805 | WD repeat, SAM and U-box domain-containing protein 1-like | -0.3233168 | 13.2144653 | 1.3269619 |
| LOC410671 | proto-oncogene tyrosine-protein kinase ROS | 0.1742594 | 13.1629590 | 6.1345405 |
| LOC411078 | nephrin | -0.4628571 | 13.1566558 | 0.6409710 |
| LOC412888 | A disintegrin and metalloproteinase with thrombospondin motifs 7-like | 0.1835374 | 13.1206052 | 3.0055022 |
| LOC725480 | innexin inx1 | 0.3294010 | 13.0863931 | 6.3889371 |
| LOC726145 | ubiquitin-conjugating enzyme E2-22 kDa | -0.0369160 | 13.0713230 | 7.4641433 |
| LOC107964581 | uncharacterized LOC107964581 | 0.1948130 | 12.9847584 | 1.3690120 |
| LOC725290 | transcription factor CP2-like protein 1 | 0.2252132 | 12.9246785 | 7.5435001 |
| LOC100577456 | fibrillin-2-like | -0.0987277 | 12.9246070 | 7.9225714 |
| LOC409649 | solute carrier organic anion transporter family member 5A1 | -0.9216924 | 12.9073668 | 3.4011448 |
| LOC412949 | glutamate receptor ionotropic, kainate 5 | 0.0250935 | 12.9009992 | 3.3747907 |
| LOC409364 | CD2-associated protein | -0.0118188 | 12.8850644 | 4.2859813 |
| LOC551776 | putative mediator of RNA polymerase II transcription subunit 26 | -0.0473048 | 12.8311144 | 2.2754773 |
| LOC552201 | WD repeat domain phosphoinositide-interacting protein 2 | 0.2277758 | 12.7593330 | 5.9042217 |
| LOC410005 | beta-1,4-glucuronyltransferase 1 | -0.8334219 | 12.7416482 | -0.2292352 |
| LOC107965503 | uncharacterized LOC107965503 | -0.1329070 | 12.7301597 | 0.0415537 |
| LOC409144 | H(+)/Cl(-) exchange transporter 3 | 0.1151915 | 12.7180446 | 7.6372544 |
| LOC100577856 | probable hydroxyacid-oxoacid transhydrogenase, mitochondrial | 0.1905848 | 12.6977997 | 8.5985530 |
| LOC100578102 | ankyrin repeat domain-containing protein 50 | -0.4509276 | 12.6769070 | 5.5316162 |
| LOC107963967 | serine protease inhibitor 3-like | -1.8234278 | 12.6746668 | 5.4513747 |
| LOC408272 | monocarboxylate transporter 7 | 0.2325747 | 12.6573398 | 5.0428825 |
| LOC107965689 | uncharacterized LOC107965689 | -0.8322698 | 12.6435429 | -0.7728051 |
| LOC107966113 | uncharacterized LOC107966113 | -0.2920331 | 12.6252504 | 5.2062118 |
| LOC551647 | uncharacterized LOC551647 | -0.4447038 | 12.6216611 | 2.6534024 |
| LOC408429 | tensin-1 | 0.0123501 | 12.6191547 | 8.6604214 |
| LOC727619 | zinc finger protein 585B | 0.0373429 | 12.5839610 | 0.2347953 |
| LOC107965420 | uncharacterized LOC107965420 | -0.7592551 | 12.5839295 | 1.7700387 |
| LOC726030 | transmembrane protein 214-A | -0.4635237 | 12.5543894 | 7.9959252 |
| LOC410134 | blood vessel epicardial substance-like | 0.1873075 | 12.5333162 | 4.6389294 |
| LOC552844 | complexin | -0.6555429 | 12.5324740 | 3.0773872 |
| LOC409611 | disintegrin and metalloproteinase domain-containing protein 10 | 0.2140680 | 12.5101414 | 5.2996668 |
| LOC107964027 | uncharacterized LOC107964027 | -0.3492757 | 12.4737571 | 0.2805217 |
| LOC411463 | PH and SEC7 domain-containing protein 2 | 0.1649511 | 12.3952036 | 5.3585659 |
| LOC411306 | inositol hexakisphosphate kinase 2 | 0.0986130 | 12.3279781 | 4.3981118 |
| LOC408669 | uncharacterized protein KIAA0930 homolog | -0.4223132 | 12.2901013 | 5.9966765 |
| LOC551559 | translocon-associated protein subunit beta | -0.1303600 | 12.2864040 | 7.7781462 |
| LOC551360 | transcription factor Ken | -0.6584682 | 12.2751752 | 4.9886700 |
| LOC413814 | transcription elongation factor SPT5 | 0.2386867 | 12.2448244 | 6.8017932 |
| LOC412623 | transmembrane protein 94 | 0.2416779 | 12.2331611 | 3.8215227 |
| LOC100577178 | uncharacterized LOC100577178 | -0.3507087 | 12.1818109 | 1.2710358 |
| LOC100578555 | uncharacterized LOC100578555 | 0.9000469 | 12.1381561 | 0.5666353 |
| LOC409638 | elongation of very long chain fatty acids protein AAEL008004-like | -0.4640019 | 12.1335455 | 8.3341850 |
| LOC409628 | neutral ceramidase | -0.0938643 | 12.1331375 | 7.7876009 |
| LOC412406 | PH-interacting protein | -0.0078481 | 12.0931536 | 6.8007207 |
| LOC551363 | vesicle transport through interaction with t-SNAREs homolog 1A | -0.1011597 | 12.0659779 | 3.8631561 |
| LOC102656564 | uncharacterized LOC102656564 | 0.2132394 | 12.0614877 | 0.0206052 |
| LOC408522 | ADP-ribosylation factor-like protein 3 | -0.1230913 | 11.9503595 | 3.3873925 |
| LOC107964546 | uncharacterized LOC107964546 | 0.1541645 | 11.8947476 | -0.9641178 |
| LOC411223 | esterase FE4-like | 0.1319306 | 11.8909962 | 3.3994929 |
| LOC102655358 | uncharacterized LOC102655358 | 0.1998956 | 11.8725720 | 2.7853951 |
| LOC102656294 | uncharacterized LOC102656294 | -0.2025116 | 11.8673466 | 5.0033719 |
| LOC107964069 | uncharacterized LOC107964069 | -0.1247870 | 11.8170797 | 1.6472638 |
| LOC724138 | igLON family member 5-like | -0.8010105 | 11.8140329 | 0.3365170 |
| 5-HT1 | serotonin receptor | -0.9635586 | 11.7686697 | 1.8532269 |
| LOC409546 | lachesin | -0.4093561 | 11.7607164 | 2.3284135 |
| LOC100576688 | histone H1, gonadal-like | -0.1226989 | 11.7593898 | 0.5807769 |
| LOC107964867 | uncharacterized LOC107964867 | 0.2315305 | 11.7397361 | 2.7644382 |
| LOC726394 | centrosomal protein of 290 kDa | -0.2874030 | 11.7304690 | 2.4671973 |
| LOC412471 | activin receptor type-2A | 0.3406127 | 11.7288721 | 3.5613839 |
| LOC100577667 | WAS/WASL-interacting protein family member 3-like | -0.5084040 | 11.7061835 | 3.3745260 |
| LOC726153 | uncharacterized LOC726153 | -0.3192937 | 11.6983540 | 0.9516965 |
| LOC102655854 | uncharacterized LOC102655854 | -0.5756148 | 11.6563407 | 0.3736639 |
| LOC408572 | myophilin | -0.1135631 | 11.6387395 | 7.0309859 |
| LOC102655072 | microtubule-associated protein futsch-like | 0.3981723 | 11.5705677 | 5.4971593 |
| LOC725102 | protein dpy-30 homolog | -0.3269236 | 11.5162416 | 4.9112401 |
| LOC102654003 | uncharacterized LOC102654003 | -0.1333453 | 11.4069920 | -0.5458784 |
| LOC409276 | phosphatidylinositol 5-phosphate 4-kinase type-2 alpha | 0.1460556 | 11.4028597 | 4.7189153 |
| LOC408811 | transmembrane and coiled-coil domains protein 2 | 0.1515603 | 11.3918423 | 5.8929531 |
| LOC408463 | uncharacterized LOC408463 | 0.6892375 | 11.3541679 | 7.8329398 |
| LOC410582 | ornithine aminotransferase, mitochondrial-like | -0.0412573 | 11.3377300 | 2.6070190 |
| LOC726818 | beta-hexosaminidase subunit beta-like | -0.4210012 | 11.3197912 | 10.1973007 |
| LOC551952 | putative N-acetylglucosamine-6-phosphate deacetylase | 0.0225889 | 11.2873593 | 5.5103828 |
| LOC552573 | oxysterol-binding protein-related protein 8 | 0.0555364 | 11.2816674 | 5.1029017 |
| LOC408691 | RING-box protein 1A | 0.0788908 | 11.2130211 | 6.8777317 |
| LOC408785 | protein-L-isoaspartate(D-aspartate) O-methyltransferase-like | 0.1369647 | 11.2097883 | 2.8611781 |
| LOC102656277 | uncharacterized LOC102656277 | -0.4053162 | 11.1958345 | 3.0187307 |
| LOC410054 | ubiquilin-1 | 0.4317444 | 11.1935015 | 6.9768391 |
| LOC725345 | ras-like protein family member 10B | 0.4649104 | 11.1903286 | 0.7279515 |
| LOC100578774 | centrosomal protein of 164 kDa | -0.6260853 | 11.0680759 | 5.8963002 |
| LOC726486 | uncharacterized LOC726486 | 0.2105272 | 11.0474979 | 4.8510095 |
| LOC102655003 | uncharacterized LOC102655003 | -0.4838145 | 11.0455432 | 0.9720438 |
| LOC726594 | class E basic helix-loop-helix protein 23 | -0.5676575 | 11.0191669 | 0.3118809 |
| LOC107965501 | LIM domain-containing protein A-like | -0.0497762 | 11.0162758 | 0.0254144 |
| LOC551661 | uncharacterized LOC551661 | 0.0753432 | 10.9966058 | 0.7879866 |
| LOC107965005 | glycine-rich cell wall structural protein-like | -0.2954912 | 10.8704880 | 4.9041769 |
| LOC408902 | F-box/LRR-repeat protein 16 | 0.3005332 | 10.8637724 | 3.3436170 |
| LOC408898 | uncharacterized LOC408898 | -0.0401780 | 10.8617349 | 5.4516692 |
| LOC102655560 | uncharacterized LOC102655560 | 0.0145241 | 10.8608982 | 1.9754752 |
| LOC408424 | COP9 signalosome complex subunit 8 | 0.0871603 | 10.8185960 | 6.5575119 |
| LOC725895 | multiple EGF-like-domains 8 | -0.0697805 | 10.8054759 | 5.4791733 |
| LOC107965911 | uncharacterized LOC107965911 | 0.0471891 | 10.7971999 | 1.2056138 |
| LOC726106 | neural cell adhesion molecule 2-like | -0.3076601 | 10.7836609 | 1.1330734 |
| LOC724196 | retinal homeobox protein Rx1 | -0.3925507 | 10.7558425 | -0.1120767 |
| LOC408324 | T-cell immunomodulatory protein | 0.2251815 | 10.6702191 | 6.7602093 |
| LOC726230 | cAMP-responsive element-binding protein-like 2 | -0.3457142 | 10.6686265 | 3.8779622 |
| LOC411009 | dachshund homolog 2 | -0.3993429 | 10.6460229 | 1.5029920 |
| LOC412890 | A disintegrin and metalloproteinase with thrombospondin motifs 3-like | 0.2740848 | 10.6305686 | 2.9628377 |
| LOC107964286 | uncharacterized LOC107964286 | -0.4625425 | 10.6243698 | 4.8290940 |
| LOC107965076 | uncharacterized LOC107965076 | -0.1567955 | 10.6105060 | 1.5702173 |
| LOC408443 | uncharacterized LOC408443 | -0.1831114 | 10.6062663 | 3.9925372 |
| LOC410438 | neuroendocrine convertase 1-like | 0.2019256 | 10.5890986 | 2.8731123 |
| LOC107963990 | cat eye syndrome critical region protein 2-like | -0.4483705 | 10.5639147 | 4.9731142 |
| LOC408329 | uncharacterized LOC408329 | -0.3596320 | 10.5319191 | 4.5301943 |
| LOC725015 | monocarboxylate transporter 3 | -0.1946824 | 10.5286563 | 6.1649492 |
| LOC107965628 | uncharacterized LOC107965628 | -0.6212294 | 10.4912020 | 0.2906240 |
| LOC102653921 | uncharacterized LOC102653921 | -0.0888538 | 10.4876174 | 3.7887756 |
| LOC409414 | kinectin | -0.4740692 | 10.4698488 | 9.7042454 |
| LOC408576 | potassium voltage-gated channel protein Shal | -0.2629086 | 10.4690924 | 4.8900533 |
| LOC102656248 | uncharacterized LOC102656248 | -0.4896385 | 10.4488598 | 3.0908910 |
| LOC408891 | methyl-CpG-binding domain protein 2 | -0.0439408 | 10.4310789 | 4.6173423 |
| LOC102654298 | uncharacterized LOC102654298 | -0.5068800 | 10.4253944 | 1.4244090 |
| LOC413134 | UNC93-like protein | -0.4945119 | 10.4156596 | 6.1491493 |
| NPF | neuropeptide F | -0.6072081 | 10.4121689 | 3.8711460 |
| GlnS | glutamine synthetase | -0.5365118 | 10.4085423 | 8.7052219 |
| LOC107964227 | uncharacterized LOC107964227 | -0.2466614 | 10.4066227 | 0.2886636 |
| LOC414028 | sorting nexin-4-like | -0.0701603 | 10.3735856 | 4.4396682 |
| LOC726582 | prominin-like protein | 0.2687859 | 10.3473909 | 5.9571792 |
| LOC725614 | protein cycle | -0.0049823 | 10.3221083 | 5.0680577 |
| LOC107965024 | uncharacterized LOC107965024 | 0.1745793 | 10.2986002 | 1.5469969 |
| LOC551898 | tetraspanin-5 | 0.3057748 | 10.2749626 | 3.2194900 |
| LOC409493 | zinc finger protein 569-like | -0.4132597 | 10.2676637 | -0.2289092 |
| LOC100577242 | sterile alpha and TIR motif-containing protein 1 | 0.4933664 | 10.2263735 | 3.4170705 |
| LOC413204 | tropomyosin-2-like | -0.2763505 | 10.2201766 | 1.3400588 |
| LOC102653800 | glutamate receptor ionotropic, kainate 2-like | -0.2674647 | 10.1955313 | 3.6744057 |
| LOC724282 | homeobox protein orthopedia | -0.1667857 | 10.1799870 | 0.2270928 |
| LOC100578321 | host cell factor 2-like | -0.6597906 | 10.1735241 | 2.8056813 |
| LOC552724 | zinc finger CCCH domain-containing protein 13-like | -0.4114135 | 10.1507927 | 7.5182947 |
| LOC408288 | isovaleryl-CoA dehydrogenase, mitochondrial | 0.0812943 | 10.1108760 | 6.9405481 |
| LOC100577332 | GATA-binding factor C-like | -0.0045702 | 10.1088866 | 8.0574932 |
| LOC107965695 | scavenger receptor class B member 1-like | -0.6137484 | 10.0943247 | 8.0918960 |
| Oa1 | octopamine receptor | 0.2036685 | 10.0940463 | 1.0544795 |
| LOC100576569 | uncharacterized LOC100576569 | -0.3698931 | 10.0873234 | 1.7318919 |
| LOC413429 | acid phosphatase type 7 | -0.1886733 | 10.0873097 | 5.9076283 |
| nAChRa1 | nicotinic acetylcholine receptor alpha1 subunit | -0.4379002 | 10.0550597 | 1.3026350 |
| LOC726184 | uncharacterized LOC726184 | 0.1698657 | 10.0334112 | 8.2996293 |
| LOC726315 | sphingomyelin phosphodiesterase 1-like | 0.4084912 | 10.0069485 | 1.8185804 |
| LOC409327 | uncharacterized LOC409327 | -0.5183892 | 9.9924505 | 2.5270273 |
| LOC408286 | 2-oxoglutarate dehydrogenase, mitochondrial | 0.4520524 | 9.9846182 | 7.5214306 |
| LOC107965308 | uncharacterized LOC107965308 | -0.7692415 | 9.9110925 | -0.6848566 |
| LOC725123 | uncharacterized LOC725123 | -1.1254294 | 9.8705388 | -1.2673537 |
| LOC724936 | uncharacterized LOC724936 | -0.7028361 | 9.8600284 | 0.5959344 |
| LOC413783 | C-Maf-inducing protein-like | 0.3033354 | 9.8577863 | 2.5626783 |
| LOC726796 | hydrocephalus-inducing protein homolog | -0.0458403 | 9.8558430 | 0.6028851 |
| LOC410218 | probable signal peptidase complex subunit 2 | -0.4865656 | 9.8548154 | 6.2634107 |
| LOC726929 | protein hedgehog-like | 0.3284863 | 9.8214738 | 0.1695302 |
| LOC102654870 | uncharacterized LOC102654870 | 0.5218450 | 9.7863599 | 0.5058348 |
| LOC552038 | synaptosomal-associated protein 29 | -0.0540618 | 9.7549117 | 3.1399871 |
| LOC102655961 | uncharacterized LOC102655961 | 0.2116401 | 9.7528349 | 2.8760137 |
| LOC107965822 | uncharacterized LOC107965822 | -0.0584409 | 9.7373099 | 5.3788324 |
| pHCl | ligand-gated ion channel pHCl | -0.1905729 | 9.7295561 | 3.7535539 |
| LOC107965619 | uncharacterized LOC107965619 | -0.4931821 | 9.7193866 | 4.1876713 |
| LOC410687 | senecionine N-oxygenase-like | 0.2531149 | 9.6627439 | 6.9045108 |
| LOC725829 | uncharacterized LOC725829 | 0.0175592 | 9.6411763 | 4.0245857 |
| LOC100577905 | probable serine/threonine-protein kinase DDB_G0282963 | -0.6163232 | 9.6312063 | 1.3760922 |
| LOC725665 | 5-oxoprolinase | 0.2328299 | 9.6036064 | 8.4765389 |
| LOC102655145 | uncharacterized LOC102655145 | -0.3893443 | 9.5228847 | 0.4652769 |
| LOC100577164 | uncharacterized LOC100577164 | 0.0739733 | 9.5031470 | 0.6959879 |
| LOC550930 | TGF-beta receptor type-1 | -0.3480083 | 9.4859833 | 7.5643383 |
| LOC100576868 | uncharacterized LOC100576868 | -0.5362169 | 9.4689435 | 2.1946744 |
| LOC551772 | zeta-sarcoglycan | -0.7114935 | 9.4453164 | 0.8957378 |
| LOC107965605 | uncharacterized LOC107965605 | -0.9307921 | 9.3966167 | -0.3622199 |
| LOC413334 | mitogen-activated protein kinase kinase kinase kinase 5 | 0.3798646 | 9.3748981 | 3.5272851 |
| LOC552377 | diacylglycerol O-acyltransferase 1 | 0.0537930 | 9.3423385 | 6.6214608 |
| LOC413052 | uncharacterized LOC413052 | -0.2950484 | 9.3317306 | 4.9680438 |
| LOC102656121 | uncharacterized LOC102656121 | -0.7842628 | 9.3148261 | -0.3056867 |
| LOC102656511 | uncharacterized LOC102656511 | -0.4058888 | 9.2928322 | 0.0456886 |
| LOC725442 | neverland | -0.0082712 | 9.2741831 | 0.1129105 |
| LOC725220 | homeobox protein Nkx-6.1-like | -0.3544726 | 9.2539546 | 1.4185815 |
| LOC550645 | max-binding protein MNT | 0.3208053 | 9.2405458 | 5.6215004 |
| LOC102655721 | uncharacterized LOC102655721 | -0.2174602 | 9.1993282 | 0.5484178 |
| LOC409318 | Kv channel-interacting protein 2-like | -0.5430979 | 9.1603636 | 0.2991485 |
| LOC410256 | protein lap1 | 0.2223934 | 9.1242740 | 3.4904465 |
| LOC107966110 | uncharacterized LOC107966110 | -0.6794551 | 9.0892943 | -0.8081936 |
| LOC107964268 | uncharacterized LOC107964268 | -0.4725913 | 9.0720565 | 1.4886025 |
| LOC100576517 | uncharacterized LOC100576517 | 0.0693820 | 9.0252249 | 1.2411339 |
| LOC102656388 | uncharacterized LOC102656388 | 0.1628437 | 8.9837857 | 1.2244830 |
| LOC724410 | uncharacterized LOC724410 | -0.7776423 | 8.9601182 | -1.6943004 |
| LOC411050 | glutamate receptor ionotropic, kainate 2 | -0.6963874 | 8.9434714 | -0.8289741 |
| LOC725289 | low-density lipoprotein receptor-related protein 2-like | -0.1821673 | 8.9271637 | 4.3831371 |
| LOC724776 | uncharacterized LOC724776 | -0.3485801 | 8.9224274 | 5.1706598 |
| Ant | ADP/ATP translocase | 0.4269315 | 8.8947767 | 11.2702334 |
| LOC409306 | 2-oxoisovalerate dehydrogenase subunit beta, mitochondrial | 0.7347309 | 8.8828420 | 7.3752517 |
| LOC410038 | collagen alpha-1(I) chain-like | 0.0476446 | 8.8333875 | 1.6086223 |
| LOC552793 | F-box only protein 32 | -0.1587212 | 8.8121565 | 1.9460841 |
| LOC413677 | rho guanine nucleotide exchange factor 10 | 0.0963535 | 8.7408910 | 7.4839605 |
| LOC726914 | myb-like protein A | -0.1123469 | 8.7381653 | 4.4498063 |
| LOC726419 | beta-1,3-galactosyltransferase | 0.0478074 | 8.7249393 | 4.1809714 |
| LOC102654105 | optomotor-blind protein-like | 0.1633895 | 8.6876675 | 0.4463563 |
| LOC409238 | 43 kDa receptor-associated protein of the synapse homolog | -0.4338422 | 8.6799225 | 1.6774123 |
| LOC410851 | bicaudal D-related protein homolog | 0.3609687 | 8.6658339 | 4.1008542 |
| LOC102655346 | uncharacterized LOC102655346 | -0.1153348 | 8.6089468 | 0.7585344 |
| LOC100577125 | uncharacterized LOC100577125 | -0.4002789 | 8.5582520 | 0.5509633 |
| LOC410101 | trafficking kinesin-binding protein milt | 0.1317224 | 8.5544820 | 7.2747227 |
| LOC409417 | RING finger protein 10 | -0.0081303 | 8.5405454 | 9.4380493 |
| LOC412083 | coatomer subunit gamma | -0.0055946 | 8.4912553 | 7.9842208 |
| LOC107965784 | histone-lysine N-methyltransferase SETMAR-like | -0.2174654 | 8.4554636 | 3.8308804 |
| LOC100576895 | putative fatty acyl-CoA reductase CG5065 | 0.3257520 | 8.4542964 | 4.9297739 |
| LOC725714 | RNA-binding protein 25-like | 0.3979717 | 8.4539535 | 6.7238400 |
| LOC724304 | ATP-binding cassette sub-family G member 1-like | -0.8159221 | 8.4395546 | 3.5042241 |
| LOC726410 | mannosyl-oligosaccharide alpha-1,2-mannosidase IA-like | 0.0620054 | 8.3965860 | 2.3283096 |
| LOC408442 | bone morphogenetic protein receptor type-1B | -0.0353928 | 8.3923755 | 5.0387471 |
| LOC411552 | ceramide glucosyltransferase | -0.0379649 | 8.3857598 | 3.3393315 |
| LOC725336 | longitudinals lacking protein, isoforms A/B/D/L-like | -0.0460836 | 8.3624733 | 8.4359212 |
| LOC724251 | alpha-sarcoglycan | -0.0657260 | 8.3479209 | 0.7399724 |
| LOC411965 | transcription initiation factor IIB | 0.0067432 | 8.3221710 | 4.8229419 |
| LOC102654532 | uncharacterized LOC102654532 | 0.1035883 | 8.2937075 | -0.5291417 |
| LOC410723 | zinc finger protein 200-like | -0.4913777 | 8.2895443 | 0.4597231 |
| LOC102656784 | uncharacterized LOC102656784 | -0.2025475 | 8.2587375 | 3.7080617 |
| LOC107965418 | uncharacterized LOC107965418 | -0.9358764 | 8.2436122 | 1.0672613 |
| LOC725851 | actin, indirect flight muscle-like | -0.1271079 | 8.2227401 | 7.7545578 |
| LOC410308 | electron transfer flavoprotein subunit beta | 0.3504217 | 8.2024469 | 8.6527238 |
| LOC727232 | uncharacterized LOC727232 | -0.3245675 | 8.1855050 | 6.0201570 |
| LOC411264 | aryl hydrocarbon receptor protein 1 | 0.0856347 | 8.1172118 | 0.7295868 |
| LOC102655564 | uncharacterized LOC102655564 | 0.3268093 | 8.0698167 | -0.1967241 |
| LOC408942 | uncharacterized protein T19C3.4 | -0.2888773 | 7.9891711 | 4.8333202 |
| LOC100576418 | repetitive proline-rich cell wall protein 2-like | -0.0385770 | 7.9804195 | 9.2774087 |
| LOC552604 | SLIT-ROBO Rho GTPase-activating protein 1-like | -0.1167562 | 7.9515779 | 2.9181255 |
| LOC409690 | uncharacterized LOC409690 | 0.0557421 | 7.9279564 | 7.6584162 |
| LOC412309 | ras-related C3 botulinum toxin substrate 1-like | 0.3194281 | 7.9237233 | 3.0557397 |
| LOC100577562 | probable LIM domain-containing serine/threonine-protein kinase DDB_G0286997 | 0.0936219 | 7.8702587 | 1.3261735 |
| LOC102655614 | uncharacterized LOC102655614 | -0.4035628 | 7.8649587 | 0.3869610 |
| LOC727335 | inhibin beta chain | -0.0923059 | 7.8645349 | -0.1741978 |
| LOC552820 | forkhead box protein N3-like | 0.1803919 | 7.8383473 | 5.4321101 |
| LOC413356 | UDP-glucose 6-dehydrogenase | 0.7529803 | 7.7577201 | 6.8776655 |
| LOC102655392 | MDS1 and EVI1 complex locus protein EVI1-A-like | -0.0262622 | 7.7351009 | 0.7527399 |
| LOC551804 | transcriptional regulator ERG homolog | -0.8667142 | 7.7114053 | -0.3842277 |
| LOC552356 | uncharacterized LOC552356 | -0.4660049 | 7.6985399 | 6.2579491 |
| LOC107964936 | putative protein TPRXL | 0.7872092 | 7.6683140 | 4.6867041 |
| LOC725952 | uncharacterized LOC725952 | 0.2280613 | 7.6088823 | 1.4213361 |
| LOC552364 | gephyrin | -0.2174710 | 7.6000312 | 6.9999536 |
| LOC100576620 | pre-mRNA-splicing factor 38B | -0.0187155 | 7.5415786 | 5.9024718 |
| LOC412288 | WD repeat-containing protein 7 | 0.2833396 | 7.5255910 | 5.8904676 |
| LOC107964432 | uncharacterized LOC107964432 | 0.0368991 | 7.5154295 | -0.4573972 |
| LOC413153 | uncharacterized LOC413153 | -0.0674398 | 7.5054154 | 4.9031250 |
| LOC552277 | class E basic helix-loop-helix protein 22 | -0.4651612 | 7.4974556 | 7.6303709 |
| LOC107965497 | uncharacterized LOC107965497 | -0.0611918 | 7.4492491 | -0.3183585 |
| LOC409066 | pyridoxine-5’-phosphate oxidase-like | -0.3438925 | 7.3799884 | 5.9853731 |
| LOC551089 | translation initiation factor IF-2-like | -0.1171917 | 7.3630118 | 6.8344827 |
| LOC102655790 | uncharacterized LOC102655790 | -0.6478898 | 7.3624049 | 0.4855458 |
| LOC411093 | testis-specific serine/threonine-protein kinase 1 | 0.1085770 | 7.3093773 | 2.4266800 |
| LOC102656204 | uncharacterized LOC102656204 | 0.0036923 | 7.3014103 | 0.9525159 |
| LOC100577273 | uncharacterized LOC100577273 | -0.8533272 | 7.2531444 | 0.2374293 |
| LOC107965260 | uncharacterized LOC107965260 | 0.0149048 | 7.2223042 | -1.0910229 |
| LOC551254 | CDK5 and ABL1 enzyme substrate 2 | 0.5545290 | 7.2221154 | 4.8629010 |
| LOC100576438 | uncharacterized LOC100576438 | 0.2887621 | 7.2214169 | 3.6315804 |
| LOC551987 | putative RNA-binding protein Luc7-like 2 | -0.1002825 | 7.2076731 | 7.7505089 |
| LOC411502 | SPARC-related modular calcium-binding protein 1 | 0.5764705 | 7.1891104 | 4.2622916 |
| LOC552347 | E3 ubiquitin-protein ligase Hakai | 0.2523501 | 7.1328426 | 4.4110751 |
| CPR16 | cuticular protein 16 | -0.4659541 | 7.1169243 | -0.0432693 |
| LOC107965212 | uncharacterized LOC107965212 | -0.1340922 | 7.1076990 | 3.5803959 |
| LOC726278 | vesicular acetylcholine transporter-like | -0.7865836 | 7.0619726 | -1.0741455 |
| Cryl1 | lambda crystallin-like protein | -0.3159818 | 7.0493366 | 9.9186436 |
| LOC411955 | uncharacterized LOC411955 | 0.0256738 | 7.0020137 | 6.7322303 |
| LOC551291 | spectrin alpha chain | 0.1942612 | 6.9872139 | 8.9753791 |
| LOC102653864 | uncharacterized LOC102653864 | -0.2016489 | 6.9520759 | 7.5986702 |
| LOC552067 | uncharacterized LOC552067 | 0.1350009 | 6.9514637 | 5.2727928 |
| LOC551510 | uncharacterized LOC551510 | 0.7249958 | 6.9412942 | 4.4988116 |
| LOC727455 | UBA-like domain-containing protein 2 | -0.7236531 | 6.9235100 | 5.6458442 |
| LOC107964422 | uncharacterized LOC107964422 | -0.5507264 | 6.9232942 | 2.1780869 |
| LOC100576994 | uncharacterized LOC100576994 | -1.0319087 | 6.9110627 | -0.7850265 |
| LOC725436 | dmX-like protein 2 | 0.2179014 | 6.8984187 | 7.1630783 |
| LOC551833 | PAXIP1-associated glutamate-rich protein 1 | 0.1705810 | 6.8874905 | 4.4389172 |
| LOC410808 | E3 ubiquitin-protein ligase Siah1 | -0.1310081 | 6.8738709 | 4.9067640 |
| LOC100576134 | uncharacterized LOC100576134 | -0.3988437 | 6.8467795 | 4.6792065 |
| LOC102655361 | uncharacterized LOC102655361 | -0.0692563 | 6.8420505 | -0.8351418 |
| LOC413858 | uncharacterized LOC413858 | 0.0353451 | 6.8383063 | 4.1986898 |
| LOC107964273 | uncharacterized LOC107964273 | -0.3466689 | 6.8210550 | -0.5724412 |
| LOC102655734 | uncharacterized LOC102655734 | -0.3642589 | 6.8142869 | -1.4668959 |
| LOC102654858 | zinc finger and BTB domain-containing protein 41-like | -0.0649219 | 6.7928748 | 3.1210840 |
| LOC410204 | titin-like | -0.3523917 | 6.7905130 | 6.3104513 |
| LOC102654948 | uncharacterized LOC102654948 | 0.0853839 | 6.7635718 | -0.8846802 |
| LOC410447 | importin subunit beta-1 | 0.6938697 | 6.7577078 | 7.9851021 |
| LOC107964762 | uncharacterized LOC107964762 | 0.2444461 | 6.7439451 | 5.7075135 |
| LOC410986 | dorsal-ventral patterning tolloid-like protein 1 | -0.1016462 | 6.7431695 | 5.5273221 |
| LOC551162 | uncharacterized LOC551162 | 0.0524630 | 6.7408382 | 4.4427160 |
| LOC102655070 | uncharacterized LOC102655070 | 0.1529318 | 6.7280472 | -1.0101113 |
| LOC725148 | uncharacterized LOC725148 | -0.0913604 | 6.7243267 | 4.5456563 |
| LOC552040 | transcription activator MSS11-like | 0.0887290 | 6.6890281 | 1.2416438 |
| LOC551424 | nuclear receptor-binding protein homolog | 0.2386654 | 6.6685157 | 5.7567587 |
| LOC409791 | cAMP-dependent protein kinase catalytic subunit | -0.0549211 | 6.6576723 | 7.1124400 |
| LOC412296 | deformed epidermal autoregulatory factor 1 | -0.0331942 | 6.6242626 | 5.2855282 |
| LOC551182 | phosphatidylinositol 4-kinase alpha | -0.0364734 | 6.5408435 | 5.5677758 |
| LOC100578121 | uncharacterized LOC100578121 | 0.3430977 | 6.5297626 | 4.5994603 |
| LOC410439 | basement membrane-specific heparan sulfate proteoglycan core protein-like | -0.2266520 | 6.5001389 | 6.2530853 |
| LOC410951 | RNA binding protein fox-1 homolog 2 | -0.3515426 | 6.4639395 | 6.9693216 |
| LOC413698 | octopamine receptor beta-1R | -0.7115127 | 6.4551039 | -2.0754428 |
| GstS4 | glutathione S-transferase S4 | -0.5558586 | 6.4457663 | 4.6871186 |
| LOC551005 | hexokinase type 2 | -0.7060206 | 6.4408316 | 7.8227035 |
| LOC100576291 | uncharacterized LOC100576291 | -0.1087040 | 6.4172655 | 1.8966789 |
| LOC727460 | FERM domain-containing protein 5 | 0.1249142 | 6.4103521 | 1.9154511 |
| LOC107965484 | uncharacterized LOC107965484 | -0.1842150 | 6.3910273 | -0.4322775 |
| LOC726804 | protein BTG2-like | -0.4583847 | 6.3816290 | 9.2151016 |
| LOC411919 | Wnt7 protein | 0.1606613 | 6.3547559 | 2.3654233 |
| LOC408696 | uncharacterized LOC408696 | -0.5901801 | 6.3357044 | 1.3478414 |
| LOC100578004 | allatostatin CC | 0.0650792 | 6.3184585 | 2.7697801 |
| LOC100576986 | uncharacterized LOC100576986 | -0.1771309 | 6.3158956 | 1.1680896 |
| LOC552694 | tyrosine-protein phosphatase non-receptor type 5 | -0.3119161 | 6.3139484 | 4.8091406 |
| LOC102653920 | uncharacterized LOC102653920 | -0.2107660 | 6.2975301 | 0.2049864 |
| LOC727309 | glutaredoxin-C4 | -0.0524858 | 6.2670183 | 5.9664119 |
| LOC411199 | sodium-dependent neutral amino acid transporter B(0)AT3 | -0.8197088 | 6.2402390 | 0.2288239 |
| LOC409990 | coatomer subunit beta’ | 0.0207079 | 6.2324842 | 8.3163611 |
| LOC102655102 | uncharacterized LOC102655102 | 0.1987471 | 6.2225257 | 1.1107991 |
| Cpap3-c | cuticular protein analogous to peritrophins 3-C | 0.2239815 | 6.1940388 | 7.9623740 |
| LOC726392 | sodium-independent sulfate anion transporter | -0.5368608 | 6.1935591 | 2.7625054 |
| LOC412810 | V-type proton ATPase 116 kDa subunit a | -0.6594335 | 6.1895559 | 7.0776994 |
| LOC102653708 | uncharacterized LOC102653708 | 0.3221572 | 6.1824944 | 3.1594524 |
| LOC726460 | spermatogenesis-associated protein 6 | -0.0418990 | 6.1800582 | 4.5899388 |
| Cdk5 | cyclin-dependent kinase 5 | 0.2034647 | 6.1738986 | 4.4036694 |
| LOC107964510 | uncharacterized LOC107964510 | -1.0065611 | 6.1603492 | -1.0481296 |
| LOC107964081 | uncharacterized LOC107964081 | -1.0498957 | 6.1542944 | 4.5022499 |
| LOC411052 | sialin | 0.0053447 | 6.1513023 | 5.3676469 |
| LOC102656181 | uncharacterized LOC102656181 | 0.6204706 | 6.1509012 | -0.2413512 |
| LOC107965257 | uncharacterized LOC107965257 | 0.0350945 | 6.1494172 | -0.6275422 |
| LOC724763 | odorant receptor 9a | -0.2882336 | 6.1442198 | 3.1791465 |
| LOC107965419 | uncharacterized LOC107965419 | -0.2872338 | 6.1320967 | -0.0117683 |
| LOC552124 | CD151 antigen | -0.1867279 | 6.1185931 | 5.8192692 |
| LOC107965676 | uncharacterized LOC107965676 | 0.0357363 | 6.1081436 | 0.3700522 |
| LOC102653763 | adenylate cyclase type 10-like | -0.6421927 | 6.1005685 | -0.1385987 |
| LOC725247 | probable inactive tRNA-specific adenosine deaminase-like protein 3 | 0.2145285 | 6.0958884 | 3.3165319 |
| LOC107964201 | uncharacterized LOC107964201 | -0.6531210 | 6.0908339 | 1.4257769 |
| LOC552712 | 6-phosphogluconate dehydrogenase, decarboxylating | -0.1184752 | 6.0724239 | 10.4052413 |
| LOC410938 | polypeptide N-acetylgalactosaminyltransferase 13 | -0.2564714 | 6.0632449 | 4.1373049 |
| LOC107965070 | uncharacterized LOC107965070 | -0.5657950 | 6.0599811 | 0.9810383 |
| LOC409796 | eukaryotic translation initiation factor 3 subunit J | 0.2079555 | 6.0368819 | 8.2566589 |
| LOC102655168 | uncharacterized LOC102655168 | -0.7298087 | 5.9989919 | -1.4896300 |
| LOC725091 | lachesin-like | 0.2190526 | 5.9890286 | 4.6742762 |
| LOC102653932 | uncharacterized LOC102653932 | 0.0175205 | 5.9632221 | -0.5293873 |
| LOC726060 | basigin | -0.2321031 | 5.9326046 | 9.1531227 |
| LOC408462 | uncharacterized LOC408462 | -0.0368943 | 5.9223440 | 4.5904974 |
| LOC411599 | uridine phosphorylase 1 | 0.1721676 | 5.9039490 | 3.7925713 |
| LOC412444 | chymotrypsin-like elastase family member 2A | 0.1033942 | 5.8940972 | 0.0679378 |
| LOC102654436 | uncharacterized LOC102654436 | -0.1207062 | 5.8881304 | 1.6528535 |
| LOC100577959 | uncharacterized LOC100577959 | -0.8937792 | 5.8828196 | -0.5922494 |
| LOC725893 | uncharacterized LOC725893 | -0.0839114 | 5.8441963 | 6.8726793 |
| LOC727378 | peptidyl-prolyl cis-trans isomerase-like 1 | 0.2503891 | 5.8332248 | 4.4633362 |
| LOC102654451 | uncharacterized LOC102654451 | -0.2167805 | 5.8276592 | -0.9060029 |
| LOC552486 | F-actin-capping protein subunit alpha | 0.0148442 | 5.7213221 | 7.0633358 |
| LOC102655511 | uncharacterized LOC102655511 | -0.3864158 | 5.7014548 | -0.2410902 |
| LOC100576697 | uncharacterized LOC100576697 | -0.7281711 | 5.6575583 | -0.5281311 |
| Amih | hyperpolarization-activated ion channel | -0.6459053 | 5.6432928 | 5.9824707 |
| LOC725127 | uncharacterized LOC725127 | 0.0066414 | 5.6425139 | 3.8486768 |
| LOC107964967 | uncharacterized LOC107964967 | -0.9982905 | 5.6397411 | 0.1912357 |
| LOC726215 | uncharacterized LOC726215 | -0.1423780 | 5.6162411 | 7.8606035 |
| LOC550926 | phosphomannomutase | -0.1838650 | 5.6132294 | 4.7820368 |
| LOC102656347 | uncharacterized LOC102656347 | -0.9232510 | 5.6052813 | 2.7499224 |
| 5-HT2alpha | serotonin receptor | -0.0807148 | 5.5953585 | 5.6154427 |
| LOC102656697 | uncharacterized LOC102656697 | -0.4871468 | 5.5928886 | -0.0974370 |
| LOC726965 | uncharacterized LOC726965 | 0.4354069 | 5.5898269 | 3.5381783 |
| LOC412914 | uncharacterized LOC412914 | 0.8643417 | 5.5862946 | 7.0498786 |
| LOC107964937 | putative uncharacterized protein DDB_G0271982 | -0.0246627 | 5.5600325 | 0.5897708 |
| LOC107965823 | uncharacterized LOC107965823 | 0.1913421 | 5.5130337 | 5.5048080 |
| LOC411048 | sestrin homolog | -0.3505245 | 5.4827371 | 9.1537163 |
| LOC413613 | B-cell receptor-associated protein 31-like | 0.1376715 | 5.4645611 | 5.1097632 |
| LOC725346 | sodium-dependent nutrient amino acid transporter 1 | -0.2427661 | 5.4488894 | 4.4876603 |
| LOC726199 | tumor protein D53 homolog | 0.0788505 | 5.4450645 | 7.4563258 |
| LOC408536 | angiotensin-converting enzyme | -0.2047513 | 5.4296439 | 1.9776028 |
| LOC102654188 | uncharacterized LOC102654188 | 0.2707534 | 5.4246099 | -0.2276305 |
| LOC411288 | cAMP-specific 3’,5’-cyclic phosphodiesterase | -0.2218040 | 5.3951396 | 7.6148763 |
| LOC100576425 | uncharacterized LOC100576425 | -1.2570282 | 5.3803838 | 2.8470961 |
| LOC411760 | metabotropic glutamate receptor 7 | 0.2191753 | 5.3730948 | 0.7403216 |
| LOC551435 | protein disulfide-isomerase | -0.4316886 | 5.3631784 | 10.5695333 |
| LOC102654286 | trichohyalin-like | -0.5316036 | 5.3610913 | 0.7884859 |
| LOC724150 | B-cell lymphoma/leukemia 11B | 0.6988255 | 5.3603392 | 3.6996659 |
| LOC724511 | zinc finger protein 234-like | 0.4605349 | 5.3573806 | 4.9721301 |
| LOC102655899 | uncharacterized LOC102655899 | 0.2148792 | 5.3477274 | 1.4476652 |
| LOC408358 | RB1-inducible coiled-coil protein 1 | 0.1302048 | 5.3428934 | 6.2182193 |
| LOC413638 | RNA-binding protein fusilli | 0.3152206 | 5.3280135 | 6.6737992 |
| LOC726936 | protein rhomboid | -0.7879027 | 5.3191673 | 1.3057168 |
| LOC100578314 | monocarboxylate transporter 10-like | -0.5871723 | 5.3156466 | -0.0742449 |
| LOC107964156 | uncharacterized LOC107964156 | -0.0626395 | 5.3068012 | -1.9357123 |
| LOC102656089 | uncharacterized LOC102656089 | -0.1618411 | 5.2949151 | 1.4374657 |
| LOC726924 | synapse-associated protein 1 | -0.4099764 | 5.2880842 | 8.0044478 |
| NLG-5 | neuroligin 5 | -0.0941598 | 5.2835056 | 1.0070841 |
| LOC107964941 | uncharacterized LOC107964941 | -0.1641068 | 5.2587051 | -0.6998013 |
| Err | estrogen-related receptor | -0.2565917 | 5.2502154 | 5.9817814 |
| LOC102654994 | uncharacterized LOC102654994 | -0.1126885 | 5.2459389 | 1.2467744 |
| LOC409728 | 40S ribosomal protein S5 | 0.1826626 | 5.2404744 | 10.5105102 |
| LOC726450 | nuclear hormone receptor FTZ-F1 | -0.3884315 | 5.2252101 | 6.7933128 |
| LOC100578822 | uncharacterized LOC100578822 | -0.1451473 | 5.2238995 | 1.2711354 |
| LOC409182 | protein GDAP2 homolog | -0.4260275 | 5.2221031 | 6.2826735 |
| LOC107965485 | uncharacterized LOC107965485 | -0.0938972 | 5.1951677 | 1.8287180 |
| LOC724655 | transmembrane and TPR repeat-containing protein 3-like | -0.3710376 | 5.1931579 | -1.4418703 |
| LOC100576916 | cuticle protein 18.7-like | -1.1032070 | 5.1789864 | 0.9780575 |
| LOC107965177 | uncharacterized LOC107965177 | 0.6294856 | 5.1769133 | 1.4259099 |
| LOC100577548 | tubulin beta chain-like | -0.4884267 | 5.1725468 | 2.4279566 |
| LOC107964603 | uncharacterized LOC107964603 | -0.2235822 | 5.1724957 | 0.6009455 |
| LOC727129 | uncharacterized LOC727129 | -0.1123915 | 5.1250674 | 1.1750485 |
| LOC100577980 | uncharacterized LOC100577980 | 0.4542436 | 5.1204267 | 4.4637573 |
| LOC100578423 | uncharacterized LOC100578423 | -0.5573655 | 5.1178567 | 5.2702314 |
| LOC102656452 | uncharacterized LOC102656452 | 0.1064866 | 5.1086683 | -1.5142539 |
| LOC408373 | phosphatidylinositol 4-kinase beta | -0.1252013 | 5.1035535 | 6.0530532 |
| LOC107964827 | uncharacterized LOC107964827 | -0.7023346 | 5.1031545 | 0.9962899 |
| LOC100578412 | uncharacterized LOC100578412 | -0.8682556 | 5.0675747 | 5.7046574 |
| LOC102654555 | leucine-rich repeat-containing protein 59 | -0.5045203 | 5.0637892 | 5.1487274 |
| LOC102654879 | uncharacterized LOC102654879 | 0.3834492 | 5.0602955 | -0.6037290 |
| LOC726666 | mediator of RNA polymerase II transcription subunit 28-like | 0.1556341 | 5.0484301 | 5.3476261 |
| LOC724997 | protein naked cuticle homolog 2-like | 0.2111777 | 5.0404749 | 3.3280154 |
| LOC107964037 | uncharacterized LOC107964037 | -0.0562343 | 5.0356857 | 0.9348678 |
| LOC409644 | ecotropic viral integration site 5 ortholog | 0.3151212 | 5.0340013 | 3.3077723 |
| LOC102654228 | uncharacterized LOC102654228 | -0.7546727 | 5.0339667 | -0.7237773 |
| LOC100577331 | cell wall integrity and stress response component 1-like | -0.0520107 | 5.0114856 | 8.1975518 |
| LOC410416 | 1-phosphatidylinositol 3-phosphate 5-kinase-like | -0.6607499 | 5.0057961 | -1.5781120 |
| LOC413197 | G protein-coupled receptor kinase 1 | -0.4201502 | 4.9943947 | 6.9309749 |
| LOC550827 | tubulin alpha-1 chain-like | 0.3545774 | 4.9676199 | 10.6889263 |
| LOC409867 | FERM domain-containing protein 8 | -0.2693517 | 4.9663811 | 1.2137501 |
| LOC724293 | yellow-x1 | 0.1923280 | 4.9660648 | 4.4189857 |
| LOC410336 | dipeptidyl aminopeptidase-like protein 6 | -0.5858021 | 4.9650411 | 3.7587788 |
| LOC102655966 | uncharacterized LOC102655966 | -0.3561642 | 4.9606817 | 0.6880107 |
| LOC413508 | RNA-binding protein Rsf1 | -0.2408727 | 4.9605762 | 6.9049269 |
| LOC727247 | non-structural maintenance of chromosomes element 1 homolog | -0.4780864 | 4.9498773 | 3.6551197 |
| LOC107965582 | uncharacterized LOC107965582 | -0.5297593 | 4.9095304 | 1.9098138 |
| LOC412430 | major facilitator superfamily domain-containing protein 6 | -0.9891360 | 4.9022001 | 4.3768484 |
| LOC107964837 | uncharacterized LOC107964837 | -0.9482414 | 4.8960237 | -1.2037436 |
| LOC107964039 | uncharacterized LOC107964039 | -0.2401348 | 4.8887038 | 4.9114451 |
| LOC726282 | uncharacterized LOC726282 | -0.7883244 | 4.8866321 | 0.1020514 |
| LOC102654554 | uncharacterized LOC102654554 | -0.3061449 | 4.8303528 | 0.1820572 |
| LOC413086 | DNA ligase 3 | -0.6237115 | 4.8186208 | 6.3296748 |
| LOC107965663 | uncharacterized LOC107965663 | -0.5127401 | 4.7776032 | -0.6441246 |
| LOC410622 | uncharacterized LOC410622 | -0.0239214 | 4.7628494 | 5.4914996 |
| LOC102655356 | thyrotropin-releasing hormone receptor-like | -0.1911143 | 4.7447532 | 0.1004089 |
| LOC409821 | twitchin | -0.4431477 | 4.7338155 | 9.7636681 |
| LOC724275 | uncharacterized LOC724275 | 1.7197933 | 4.7140277 | 3.0034009 |
| LOC410530 | alkaline phosphatase-like | -0.0144429 | 4.6733309 | 6.4390278 |
| LOC100577594 | uncharacterized LOC100577594 | 0.2173269 | 4.6658383 | 3.9893979 |
| LOC725410 | tyrosine-protein phosphatase Lar-like | 0.3353492 | 4.6505327 | 1.0935999 |
| LOC102653654 | helix-loop-helix protein 1-like | -0.6482210 | 4.6297398 | -1.0409149 |
| LOC100577428 | uncharacterized LOC100577428 | 0.1547996 | 4.6196938 | 3.0852142 |
| LOC100577707 | arginine/serine-rich coiled-coil protein 2 | -0.1653075 | 4.6137148 | 7.5081975 |
| LOC107965110 | uncharacterized LOC107965110 | -0.8894190 | 4.6036446 | -0.5105278 |
| LOC410019 | uncharacterized protein KIAA1109 | 0.1293482 | 4.5978515 | 6.1908860 |
| LOC409636 | uncharacterized LOC409636 | -0.2835138 | 4.5942753 | 4.8844046 |
| LOC408367 | NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial | 0.4177721 | 4.5817629 | 8.9528806 |
| LOC725064 | vesicular acetylcholine transporter | -0.6574011 | 4.5798752 | 0.3509268 |
| LOC102656559 | uncharacterized LOC102656559 | -1.0165883 | 4.5719068 | -1.0516802 |
| LOC724831 | uncharacterized LOC724831 | -0.4311820 | 4.5580163 | 4.6951882 |
| LOC413892 | ankyrin-3-like | -0.1102196 | 4.5460398 | 4.3403902 |
| LOC410334 | uncharacterized LOC410334 | -0.4692786 | 4.5426403 | 0.4120158 |
| LOC107965147 | uncharacterized LOC107965147 | -0.2761357 | 4.5342308 | 4.1757134 |
| LOC409680 | tubby-related protein 4 | -0.6738460 | 4.5329292 | 3.2695480 |
| LOC727490 | E3 ubiquitin-protein ligase FANCL | -0.2226308 | 4.5312561 | 3.6048490 |
| LOC100577063 | uncharacterized LOC100577063 | 0.1887436 | 4.5291051 | -0.6159277 |
| LOC412934 | potassium voltage-gated channel protein Shaw | -0.1325963 | 4.5206841 | 1.8571444 |
| LOC410079 | zinc finger protein 385B | -0.2747080 | 4.5151407 | 4.6105190 |
| LOC100576993 | zinc finger protein 1 | -0.1586740 | 4.5039299 | 7.4744375 |
| LOC552272 | 40S ribosomal protein S23 | -0.0386950 | 4.5038608 | 10.3991299 |
| LOC102654674 | uncharacterized LOC102654674 | 0.1578511 | 4.4915714 | 0.6739132 |
| LOC102655366 | DEAD-box ATP-dependent RNA helicase 42-like | -0.8409485 | 4.4816830 | -0.4917934 |
| LOC102655496 | uncharacterized LOC102655496 | 0.1669640 | 4.4811455 | 0.0461675 |
| LOC552146 | transcription factor Sp9-like | -0.1796770 | 4.4796924 | 1.4696542 |
| LOC102656924 | uncharacterized LOC102656924 | -0.6110915 | 4.4514755 | 0.7659036 |
| LOC107965578 | uncharacterized LOC107965578 | -0.8292164 | 4.4390248 | 0.4685581 |
| LOC102655073 | histone H4 | 0.6406022 | 4.4318548 | 4.2312796 |
| LOC552020 | neuromodulin | 0.2596710 | 4.4288524 | 5.7933482 |
| LOC102656761 | uncharacterized LOC102656761 | -0.0562640 | 4.4196534 | -2.1504678 |
| LOC100577363 | uncharacterized LOC100577363 | 0.0553779 | 4.4110966 | 4.4910461 |
| LOC726825 | homeobox protein HMX2-like | -0.5265316 | 4.4041861 | 0.4201554 |
| LOC107964878 | uncharacterized LOC107964878 | -0.4715710 | 4.3559619 | 1.2848564 |
| LOC107963993 | palmitoleoyl-protein carboxylesterase NOTUM-like | -0.2569538 | 4.3550178 | -0.6434105 |
| LOC726861 | myosuppressin | -0.2999623 | 4.3367574 | 0.2090534 |
| Cpap3-d | cuticular protein analogous to peritrophins 3-D | -0.6088165 | 4.3312265 | 5.4541934 |
| LOC410278 | putative inorganic phosphate cotransporter | 0.8795478 | 4.3292671 | 7.1538315 |
| LOC102656558 | uncharacterized LOC102656558 | -0.2800087 | 4.3180413 | 1.1831900 |
| LOC409927 | putative pyridoxal-dependent decarboxylase domain-containing protein 2 | 0.1175390 | 4.3132525 | 6.5411260 |
| LOC725900 | mitochondrial sodium/hydrogen exchanger 9B2-like | -0.3434393 | 4.3115208 | 0.6852324 |
| LOC107964195 | uncharacterized LOC107964195 | -0.6992240 | 4.3089135 | 2.3351285 |
| LOC102653944 | uncharacterized LOC102653944 | -0.2827212 | 4.3077180 | 1.7498778 |
| LOC102654353 | alpha-(1,3)-fucosyltransferase C | -0.2321993 | 4.2971987 | 6.4786358 |
| LOC409970 | thrombospondin type-1 domain-containing protein 4-like | 0.2356363 | 4.2967515 | 3.8936442 |
| LOC107965345 | uncharacterized LOC107965345 | -0.3554173 | 4.2855832 | 0.2283460 |
| LOC410752 | vesicular glutamate transporter 1 | -0.1837706 | 4.2725405 | -1.0551543 |
| LOC725370 | uncharacterized LOC725370 | -0.5242362 | 4.2676666 | 2.6441159 |
| LOC552276 | uncharacterized LOC552276 | -0.0439259 | 4.2500233 | 6.7066960 |
| LOC102654358 | uncharacterized LOC102654358 | -0.0529234 | 4.2454309 | 2.2780734 |
| LOC412883 | Allatostatin C receptor | -1.3036188 | 4.2453185 | 2.7705447 |
| LOC410627 | putative aminopeptidase W07G4.4 | -0.0516485 | 4.2438625 | 3.7313024 |
| LOC411653 | sodium channel protein 60E | -0.5463721 | 4.2103593 | 1.0089548 |
| LOC551560 | cytochrome P450 6k1 | 0.3283189 | 4.2071551 | 6.4560976 |
| LOC552358 | low-density lipoprotein receptor-related protein 2 | -0.0188847 | 4.1700872 | 8.4886421 |
| LOC100578648 | uncharacterized LOC100578648 | -0.4221912 | 4.1479960 | 3.5188655 |
| LOC102654726 | uncharacterized LOC102654726 | -0.4263399 | 4.1335915 | 0.0459635 |
| LOC102654279 | uncharacterized LOC102654279 | 0.3246333 | 4.1322380 | 2.2694096 |
| LOC551053 | facilitated trehalose transporter Tret1-2 homolog | -1.0925035 | 4.1036027 | 1.0965407 |
| LOC412663 | laminin subunit alpha | 0.2152149 | 4.0969144 | 9.7956740 |
| LOC409009 | uncharacterized LOC409009 | -0.5142413 | 4.0699240 | 3.3780124 |
| LOC413784 | rabphilin | 0.1329176 | 4.0679239 | 3.4625403 |
| LOC412907 | arrestin homolog | 0.2427047 | 4.0526530 | 1.4240757 |
| LOC409678 | ankycorbin | -0.1104185 | 4.0430092 | 0.3779197 |
| LOC100578222 | uncharacterized LOC100578222 | -0.9644166 | 4.0348876 | 0.0125609 |
| LOC725506 | uncharacterized LOC725506 | 0.2476250 | 4.0309442 | 0.7916790 |
| LOC100576488 | uncharacterized LOC100576488 | -0.0487978 | 4.0261758 | -0.2647306 |
| LOC107964001 | uncharacterized LOC107964001 | -0.7239136 | 4.0210672 | -1.2876108 |
| LOC100577201 | uncharacterized LOC100577201 | -0.1635119 | 4.0158149 | 0.3198695 |
| LOC102655763 | uncharacterized LOC102655763 | -0.1167268 | 4.0115832 | -0.6576808 |
| LOC413925 | uncharacterized LOC413925 | 0.2549592 | 4.0107112 | 1.5380155 |
| LOC726578 | putative inorganic phosphate cotransporter | -0.7429946 | 3.9986228 | -1.3129560 |
| LOC727153 | fructose-1,6-bisphosphatase 1 | -0.1278229 | 3.9846712 | 2.1813594 |
| LOC726523 | protein white-like | 0.0307091 | 3.9827058 | 2.0342106 |
| LOC102656799 | uncharacterized LOC102656799 | -0.1752401 | 3.9805754 | 0.6247007 |
| LOC551069 | diacylglycerol kinase 1 | 0.4095000 | 3.9641997 | 2.0358533 |
| LOC725241 | uncharacterized LOC725241 | -0.4631456 | 3.9604424 | 4.6844237 |
| LOC550801 | ATP-dependent RNA helicase dbp2-like | -0.1367858 | 3.9595582 | 4.8008130 |
| LOC726806 | ataxin-10 | 0.1105182 | 3.9553950 | 3.4223097 |
| LOC107964410 | uncharacterized LOC107964410 | -0.4626218 | 3.9536394 | 0.0806764 |
| LOC107965579 | uncharacterized LOC107965579 | -0.2744342 | 3.9397212 | -0.4755605 |
| LOC101664702 | PI-PLC X domain-containing protein 1-like | 0.2853196 | 3.9253777 | 1.9919365 |
| LOC102655731 | uncharacterized LOC102655731 | -0.3014727 | 3.9248440 | 1.3541247 |
| LOC107964180 | uncharacterized LOC107964180 | -0.9664226 | 3.9244112 | -0.8108135 |
| LOC102654974 | uncharacterized LOC102654974 | -0.5707787 | 3.9227796 | 1.5705314 |
| LOC409715 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter | -0.5970103 | 3.9078082 | 4.4400606 |
| LOC552747 | glucosidase 2 subunit beta | -0.0159208 | 3.9053319 | 9.1787798 |
| LOC410368 | cadherin-23 | 1.1767755 | 3.8809582 | 7.1413826 |
| LOC107964790 | uncharacterized LOC107964790 | -0.7170193 | 3.8518286 | 1.4186809 |
| LOC727154 | polypeptide N-acetylgalactosaminyltransferase 5-like | 0.3489292 | 3.8429907 | 3.4225257 |
| LOC102656871 | uncharacterized LOC102656871 | 1.4580622 | 3.7912393 | 0.4371980 |
| LOC102656939 | histone-lysine N-methyltransferase SETMAR-like | -0.4508337 | 3.7799183 | 3.2892663 |
| LOC107964994 | uncharacterized LOC107964994 | -0.0239694 | 3.7792465 | 0.1763636 |
| LOC725877 | beta carbonic anhydrase 1 | 0.0517377 | 3.7687687 | 3.2789460 |
| LOC107965429 | uncharacterized LOC107965429 | -0.5694522 | 3.7640084 | -0.7035595 |
| LOC725784 | uncharacterized LOC725784 | 0.6397262 | 3.7613390 | 6.9968200 |
| LOC100576718 | uncharacterized LOC100576718 | 0.0834924 | 3.7360377 | 3.1779312 |
| LOC552736 | phosphoglycerate mutase 2 | 0.1174968 | 3.7342870 | 8.7703077 |
| Csd | complementary sex determiner | -0.0762093 | 3.6770356 | 3.6612196 |
| Eyg | eyegone | 1.3240589 | 3.6749953 | 3.4393485 |
| LOC552749 | sodium/potassium-transporting ATPase subunit beta-1-interacting protein | -0.0989383 | 3.6469648 | 4.1071686 |
| LOC410510 | hepatocyte growth factor-regulated tyrosine kinase substrate | -0.0025487 | 3.6467641 | 5.2524945 |
| LOC107965098 | uncharacterized LOC107965098 | -0.3167809 | 3.6445165 | 1.0115202 |
| LOC107965348 | uncharacterized LOC107965348 | -0.6621252 | 3.6426300 | -0.7639191 |
| LOC724886 | uncharacterized LOC724886 | 0.3584569 | 3.6221360 | 6.3604167 |
| LOC725563 | uncharacterized LOC725563 | -0.3233203 | 3.6119889 | 4.6250376 |
| LOC408446 | probable aconitate hydratase, mitochondrial | 0.3498608 | 3.6114065 | 9.9396912 |
| LOC107964722 | uncharacterized LOC107964722 | -0.1269206 | 3.5961750 | -0.0099079 |
| LOC100577151 | uncharacterized LOC100577151 | -0.1496522 | 3.5901442 | 0.0308108 |
| LOC411100 | FGGY carbohydrate kinase domain-containing protein | 0.3529747 | 3.5877327 | 7.5466673 |
| LOC409336 | sialin | -0.1918004 | 3.5864090 | 4.1720550 |
| LOC410441 | secretory carrier-associated membrane protein 5B | 0.0725138 | 3.5734488 | 6.0263170 |
| LOC411202 | 1,5-anhydro-D-fructose reductase-like | -0.2983461 | 3.5726098 | 8.8189700 |
| LOC726736 | laminin subunit beta-1 | 0.0333094 | 3.5676472 | 8.7921317 |
| LOC410915 | aquaporin AQPAn.G-like | -0.1117834 | 3.5639403 | 2.2909676 |
| LOC100577045 | uncharacterized LOC100577045 | -0.3507735 | 3.5510390 | 1.0861850 |
| LOC726761 | paired box protein Pax-2a-like | -0.6594098 | 3.5504420 | -1.3669638 |
| LOC107964823 | uncharacterized LOC107964823 | -0.1866928 | 3.5311156 | -0.5063994 |
| LOC100576417 | uncharacterized LOC100576417 | -0.3064535 | 3.5304389 | 0.9989706 |
| LOC724616 | neprilysin-2 | -0.0077436 | 3.4945455 | 0.8993886 |
| LOC411675 | UNC93-like protein | -0.4114430 | 3.4826396 | -0.7479727 |
| LOC552008 | protein ABHD18 | -0.2047707 | 3.4804106 | 6.3744502 |
| LOC100577723 | uncharacterized LOC100577723 | -0.7882407 | 3.4710840 | 0.7477199 |
| LOC409159 | G-protein coupled receptor moody | 0.4055520 | 3.4631311 | 1.5901052 |
| LOC409455 | doublesex- and mab-3-related transcription factor A2-like | -0.1732179 | 3.4375917 | -0.7903097 |
| LOC100577600 | uncharacterized LOC100577600 | -1.3127167 | 3.4365131 | 2.2161610 |
| LOC408715 | lachesin | -0.1927575 | 3.4292076 | 1.8090139 |
| LOC107965237 | flocculation protein FLO11 | 0.1523361 | 3.4152489 | 4.1119331 |
| LOC107965073 | uncharacterized LOC107965073 | 1.1900586 | 3.4147245 | -0.5800904 |
| LOC102655751 | uncharacterized LOC102655751 | 0.0023252 | 3.4094059 | 2.7257553 |
| LOC100576745 | leucine-rich repeat-containing protein 26-like | 0.0811036 | 3.3966100 | 4.0040092 |
| LOC102656037 | salivary glue protein Sgs-3-like | 0.4933459 | 3.3912703 | -0.2263196 |
| LOC408908 | anoctamin-8 | -0.0710237 | 3.3849377 | 3.7250063 |
| LOC100578162 | uncharacterized LOC100578162 | 0.2784643 | 3.3647419 | 2.7725925 |
| LOC107965166 | uncharacterized LOC107965166 | -1.0806432 | 3.3562526 | 0.4790848 |
| LOC410021 | protein Skeletor, isoforms B/C | -0.9347824 | 3.3552421 | 7.2208382 |
| LOC410332 | breast cancer anti-estrogen resistance protein 3 | 0.5933686 | 3.3535760 | 5.1276502 |
| LOC102654949 | uncharacterized LOC102654949 | -1.0560673 | 3.3461655 | -0.9217768 |
| LOC410269 | probable multidrug resistance-associated protein lethal(2)03659 | -1.0462822 | 3.3417953 | 8.6608361 |
| LOC102655569 | uncharacterized LOC102655569 | 0.0842795 | 3.3416147 | -0.1660803 |
| LOC107965526 | uncharacterized LOC107965526 | -1.1612833 | 3.3175163 | -0.7331476 |
| LOC410006 | uncharacterized LOC410006 | 0.1206204 | 3.2970814 | 3.3386128 |
| LOC411633 | UDP-glucose 4-epimerase | -0.4259373 | 3.2816181 | 7.3966069 |
| LOC100577994 | putative SLC9B1-like protein SLC9B1P1 | 0.3470846 | 3.2773293 | 2.2552339 |
| LOC409424 | solute carrier family 2, facilitated glucose transporter member 1-like | 0.6852666 | 3.2655657 | 6.5331836 |
| LOC107965406 | uncharacterized LOC107965406 | -0.4165409 | 3.2623324 | 2.4006650 |
| LOC410825 | leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 3 | 0.2087742 | 3.2620019 | 6.7584808 |
| LOC411905 | protein O-GlcNAcase | 0.0454044 | 3.2563695 | 5.8566619 |
| LOC100576350 | E3 ubiquitin-protein ligase TRIM37-like | 0.3256542 | 3.2450461 | 1.7944439 |
| LOC412994 | octopamine receptor beta-3R | -0.5926790 | 3.2298210 | 2.5433930 |
| LOC408807 | uncharacterized LOC408807 | -0.8010224 | 3.2255446 | -0.6332462 |
| LOC107964040 | uncharacterized LOC107964040 | -0.4399639 | 3.2138590 | -0.1848762 |
| LOC409435 | phosphatidylinositol-binding clathrin assembly protein LAP | -0.1651405 | 3.2118760 | 6.2581398 |
| LOC100577576 | chondroitin proteoglycan-2-like | -0.0734184 | 3.1839621 | 6.2512426 |
| LOC107965574 | uncharacterized LOC107965574 | -0.3577076 | 3.1628502 | -0.8257316 |
| LOC410657 | inhibitory POU protein | -0.6555201 | 3.1613239 | -1.3952304 |
| LOC100576199 | uncharacterized LOC100576199 | -0.0093327 | 3.1589231 | 0.2570782 |
| LOC107963982 | protein tweety | 0.1938470 | 3.1486236 | 4.3748470 |
| eve | segmentation protein even-skipped | -0.2546651 | 3.1290211 | -0.6077736 |
| LOC102654715 | uncharacterized LOC102654715 | -0.4298496 | 3.1232738 | 1.0644765 |
| LOC726065 | uncharacterized LOC726065 | -0.2532933 | 3.1072372 | 1.7170830 |
| LOC412091 | A disintegrin and metalloproteinase with thrombospondin motifs 9-like | -0.8212713 | 3.1017086 | 5.4427909 |
| LOC409026 | transmembrane emp24 domain-containing protein bai | -0.1888670 | 3.0994508 | 6.8801195 |
| LOC726913 | cytochrome b5-like | 0.5907643 | 3.0973400 | 4.9159273 |
| LOC551684 | ferritin heavy polypeptide-like 17 | -0.3500305 | 3.0967134 | 10.4152713 |
| LOC409869 | kinesin 3A | -0.0092741 | 3.0816576 | 7.9312133 |
| LOC100576546 | uncharacterized LOC100576546 | -0.2736860 | 3.0528605 | 0.0480850 |
| LOC100579043 | uncharacterized LOC100579043 | -0.2828638 | 3.0401692 | -0.3977083 |
| LOC411065 | monocarboxylate transporter 14-like | -0.3216955 | 3.0327743 | 7.9679296 |
| LOC408596 | clavesin-2 | -0.3389388 | 3.0327392 | 7.5642696 |
| LOC107965515 | uncharacterized LOC107965515 | -0.5130575 | 3.0176909 | 5.8761887 |
| LOC725991 | sodium/potassium-transporting ATPase subunit beta-2-like | 0.0833403 | 3.0129643 | 4.8416720 |
| 5-HT2beta | serotonin receptor | -0.0725031 | 3.0112903 | -1.2502631 |
| LOC725701 | sialin-like | 0.4735118 | 3.0080735 | 4.6884071 |
| LOC724297 | uncharacterized LOC724297 | -1.3620687 | 3.0054279 | -1.3726430 |
| LOC410888 | lachesin-like | -0.4701542 | 3.0016549 | -1.1755049 |
| LOC100578413 | uncharacterized LOC100578413 | 0.1921159 | 2.9990909 | 0.4087537 |
| LOC725058 | GS homeobox 1-like | -0.0633937 | 2.9984263 | -1.4568581 |
| LOC551046 | cys-loop ligand-gated ion channel subunit 12344 | -0.1471249 | 2.9797243 | 1.5079873 |
| LOC411894 | dynein beta chain, ciliary-like | -0.4358699 | 2.9775770 | 1.7135246 |
| LOC551710 | electron transfer flavoprotein subunit alpha, mitochondrial | 0.2305268 | 2.9725419 | 8.0020090 |
| LOC100577165 | uncharacterized LOC100577165 | -0.3908451 | 2.9639954 | -0.4162083 |
| LOC724308 | trypsin-1 | -0.8264897 | 2.9610859 | 3.8006173 |
| LOC408877 | neurogenic protein mastermind | -0.3183020 | 2.9569681 | 8.3339194 |
| LOC107966112 | uncharacterized LOC107966112 | 0.1817933 | 2.9560265 | -0.4478073 |
| Crzr | corazonin receptor | -1.1511365 | 2.9548355 | -1.2438264 |
| LOC724908 | Krueppel-like factor 11 | -0.1320379 | 2.9483847 | 0.7488217 |
| LOC102655865 | uncharacterized LOC102655865 | -0.0826155 | 2.9381417 | 2.8846431 |
| LOC102654470 | uncharacterized LOC102654470 | -0.2532709 | 2.9378804 | -1.3595160 |
| LOC408740 | phosphatase and actin regulator 4 | -0.2526271 | 2.9367298 | 7.1405943 |
| LOC408965 | glutamate receptor-interacting protein 1 | 0.1895702 | 2.9359110 | 3.5761716 |
| LOC725617 | sodium-coupled monocarboxylate transporter 1-like | -0.2091201 | 2.9134644 | 2.3921408 |
| LOC725302 | H2.0-like homeobox protein | -0.3856389 | 2.9006331 | -0.8405599 |
| LOC411330 | EF-hand calcium-binding domain-containing protein 1 | -0.1785142 | 2.8987226 | -1.4864674 |
| LOC107964552 | uncharacterized LOC107964552 | 0.2776337 | 2.8740848 | -1.1685532 |
| LOC551852 | ubiquitin-conjugating enzyme E2-17 kDa | 0.2792106 | 2.8542218 | 6.9903682 |
| LOC100578925 | protein Tob1-like | -0.2401400 | 2.8532157 | 9.3671227 |
| LOC107964284 | uncharacterized LOC107964284 | 0.4025445 | 2.8531305 | -0.8332301 |
| LOC102655591 | uncharacterized LOC102655591 | -0.8519608 | 2.8523902 | -0.1195237 |
| LOC107965256 | uncharacterized LOC107965256 | -0.3464742 | 2.8417629 | -0.8033427 |
| LOC411214 | BTB/POZ domain-containing protein kctd15-like | 0.2487913 | 2.8304677 | 1.9645531 |
| LOC411723 | E3 ubiquitin-protein ligase Nedd-4 | 0.0544853 | 2.8166305 | 6.4983122 |
| LOC413408 | scavenger receptor class B member 1 | -0.7868616 | 2.8079560 | 6.7800593 |
| LOC100577322 | cell wall integrity and stress response component 2 | -0.4029184 | 2.8050931 | 0.4982598 |
| LOC100578657 | uncharacterized LOC100578657 | 0.4404168 | 2.8012366 | 1.5608909 |
| LOC412544 | protein dopey-1 homolog | -0.0263084 | 2.7955745 | 6.4718691 |
| LOC107965402 | uncharacterized LOC107965402 | 0.4680720 | 2.7732479 | -0.1170283 |
| LOC727137 | protein TANC2-like | 0.7590359 | 2.7684686 | -0.0181779 |
| LOC100576498 | uncharacterized LOC100576498 | -0.8408565 | 2.7298317 | -1.5117238 |
| LOC413097 | dynein heavy chain 12, axonemal | 0.3382585 | 2.7260316 | 2.9614337 |
| LOC107964061 | cell wall integrity and stress response component 1-like | -0.0401886 | 2.7035562 | 4.0158153 |
| Ecr | ecdysone receptor | -0.1714890 | 2.7031149 | 8.2609700 |
| LOC409952 | uncharacterized LOC409952 | 0.3001991 | 2.6896017 | 6.4047639 |
| LOC412948 | delta-1-pyrroline-5-carboxylate synthase | 0.0369604 | 2.6669526 | 9.4214833 |
| LOC411672 | neuropeptides capa receptor-like protein | -0.2753668 | 2.6533879 | 0.8885693 |
| LOC408661 | uncharacterized LOC408661 | -0.0603606 | 2.6308273 | 7.2580149 |
| LOC552451 | transmembrane and ubiquitin-like domain-containing protein 1 | 0.1241423 | 2.6247453 | 5.5919630 |
| LOC551241 | peroxisomal membrane protein PMP34 | -0.0066076 | 2.6121634 | 7.2371966 |
| LOC551385 | frequenin-1 | 0.1290702 | 2.6116425 | -0.4043043 |
| LOC107964714 | histone-lysine N-methyltransferase SETMAR-like | 0.1991266 | 2.5914875 | 0.2769366 |
| LOC100577841 | carbonic anhydrase 7-like | -0.9860861 | 2.5832846 | -0.7188687 |
| LOC411557 | protein FAM46C | -0.1224001 | 2.5798048 | 7.5515207 |
| LOC102654244 | uncharacterized LOC102654244 | -0.2395356 | 2.5685962 | -1.4214936 |
| LOC408544 | lysyl oxidase homolog 4 | -0.4125495 | 2.5651708 | -0.7827094 |
| LOC727496 | uncharacterized LOC727496 | -0.4143454 | 2.5641777 | 1.0207103 |
| LOC725974 | calcium uniporter protein, mitochondrial | 0.0440914 | 2.5557876 | 2.3099869 |
| LOC726421 | membrane metallo-endopeptidase-like 1 | -0.1659510 | 2.5515622 | 0.5774503 |
| LOC725306 | TATA-binding protein-associated factor 172 | 0.1914186 | 2.5512384 | 6.4100152 |
| LOC100578536 | uncharacterized LOC100578536 | -0.7406178 | 2.5275749 | 0.1306233 |
| LOC726210 | uncharacterized family 31 glucosidase KIAA1161 | -0.4343612 | 2.5232934 | 7.4213038 |
| LOC100577436 | sperm flagellar protein 2-like | 0.0678611 | 2.5184816 | 0.2788238 |
| LOC100578044 | F-box/LRR-repeat protein 7-like | -0.9539303 | 2.5172300 | 0.8009188 |
| LOC409903 | GTP-binding protein RAD-like | -0.0740457 | 2.5154469 | -0.1195590 |
| LOC100577827 | uncharacterized LOC100577827 | -0.3138954 | 2.5137214 | -1.2819048 |
| LOC726019 | uncharacterized LOC726019 | 1.4012712 | 2.5112552 | 4.6750839 |
| LOC410188 | 60S ribosomal protein L8 | 0.1058504 | 2.5104737 | 10.8635661 |
| LOC107964282 | uncharacterized LOC107964282 | -0.0367495 | 2.4931992 | 0.0401813 |
| LOC725924 | leucine-rich repeat-containing protein 24 | 0.0195276 | 2.4920925 | -0.3757410 |
| LOC102654085 | uncharacterized LOC102654085 | -0.1856017 | 2.4824544 | 1.4752314 |
| LOC107964831 | uncharacterized LOC107964831 | -0.9328595 | 2.4795822 | -0.1936682 |
| LOC107965175 | uncharacterized LOC107965175 | -0.1018200 | 2.4690304 | 2.9848069 |
| LOC102656639 | midasin-like | -0.2699922 | 2.4641200 | 2.1655110 |
| LOC102654947 | uncharacterized LOC102654947 | -0.6397029 | 2.4530491 | -0.1464056 |
| Dnmt3 | DNA methyltransferase 3 | 0.4447158 | 2.4497712 | 4.5857871 |
| LOC408681 | solute carrier family 35 member F1-like | -0.6350903 | 2.4350522 | -0.6288092 |
| LOC100577071 | uncharacterized LOC100577071 | -0.0667876 | 2.4285022 | 1.5576144 |
| LOC100578943 | transmembrane protein 258 | -0.1630190 | 2.4209238 | 4.6208181 |
| LOC726466 | uncharacterized LOC726466 | 0.5170002 | 2.4200244 | 2.1969536 |
| LOC100577014 | uncharacterized LOC100577014 | -0.6442037 | 2.4070399 | 5.5933614 |
| LOC102655018 | uncharacterized LOC102655018 | -0.4662401 | 2.4030779 | 2.4200073 |
| LOC726839 | facilitated trehalose transporter Tret1-like | -0.2614189 | 2.4019121 | 4.3210317 |
| LOC408344 | tRNA dimethylallyltransferase, mitochondrial-like | 0.4997172 | 2.3838772 | 3.7880374 |
| LOC102654544 | uncharacterized LOC102654544 | -0.3742764 | 2.3836179 | 0.1563700 |
| Cyp6as5 | cytochrome P450 6AS5 | -1.3423700 | 2.3813907 | 0.5841750 |
| LOC100577515 | uncharacterized LOC100577515 | -0.0908652 | 2.3774817 | 2.8122003 |
| LOC408264 | netrin receptor UNC5C | -0.9332056 | 2.3525634 | 5.8934711 |
| LOC107965162 | uncharacterized LOC107965162 | -0.4763449 | 2.3504182 | -1.1029737 |
| LOC100576462 | odorant receptor Or1-like | 0.0347519 | 2.3427024 | 1.5331275 |
| LOC551758 | arylsulfatase B-like | -0.2505686 | 2.3417053 | 1.7956706 |
| LOC107964738 | uncharacterized LOC107964738 | -1.3421923 | 2.3302124 | -1.2459456 |
| LOC412602 | polyadenylate-binding protein 1 | 0.0644600 | 2.3297626 | 12.1206929 |
| LOC107964186 | uncharacterized LOC107964186 | -1.5652329 | 2.3272728 | -1.4275314 |
| LOC725020 | uncharacterized LOC725020 | -0.2814013 | 2.3165168 | 0.1328156 |
| LOC102655155 | uncharacterized LOC102655155 | -0.3478490 | 2.3048470 | 0.2501354 |
| LOC102654693 | uncharacterized LOC102654693 | 0.5291670 | 2.2934031 | 1.5162059 |
| LOC725965 | B-cell lymphoma 6 protein homolog | -0.5482117 | 2.2931082 | -0.4941455 |
| LOC102656097 | uncharacterized LOC102656097 | -0.6055712 | 2.2881861 | -0.4763429 |
| LOC107965171 | uncharacterized LOC107965171 | 0.1621647 | 2.2881486 | -2.1456550 |
| LOC107965478 | uncharacterized LOC107965478 | 0.0409484 | 2.2646038 | 1.7377731 |
| LOC107965357 | uncharacterized LOC107965357 | -0.2555728 | 2.2639129 | -0.3436293 |
| LOC102653989 | uncharacterized LOC102653989 | -0.2771707 | 2.2582702 | -0.1556098 |
| LOC552096 | cytosolic carboxypeptidase 6 | -0.2317726 | 2.2506104 | -1.0029134 |
| LOC550915 | sideroflexin-2 | 0.4849632 | 2.2328081 | 5.3270009 |
| LOC409320 | leucine carboxyl methyltransferase 1 | 0.3393676 | 2.2263137 | 6.2560244 |
| LOC107964939 | uncharacterized LOC107964939 | -0.4321295 | 2.2211104 | 0.0638931 |
| LOC100576370 | nucleolar protein 58-like | -0.7387954 | 2.2181225 | -1.1521602 |
| LOC410202 | radial spoke head protein 3 homolog | -0.9929981 | 2.2107516 | -1.1679092 |
| LOC408570 | uncharacterized LOC408570 | 0.2515942 | 2.2049253 | 4.1562822 |
| LOC726092 | uncharacterized LOC726092 | -0.6530886 | 2.2025261 | 2.1515381 |
| LOC413891 | NADH-ubiquinone oxidoreductase 49 kDa subunit | 0.3786563 | 2.2024881 | 8.3120978 |
| LOC102654610 | putative hydroxypyruvate isomerase | -0.2634322 | 2.2008800 | 7.0182958 |
| LOC414033 | molybdopterin synthase catalytic subunit | -0.0785480 | 2.1979894 | 5.7449585 |
| LOC727254 | mitochondrial cardiolipin hydrolase | 0.5397037 | 2.1910244 | 3.9719239 |
| LOC551788 | katanin p60 ATPase-containing subunit A-like 2 | 0.1287217 | 2.1867809 | 1.4810399 |
| LOC410959 | kinesin 12 | -0.2584127 | 2.1737771 | -0.4609818 |
| LOC413350 | lachesin-like | 0.3725729 | 2.1716299 | 1.4335740 |
| LOC726150 | transcription factor Sox-21-B-like | -0.4635131 | 2.1713220 | 0.2540753 |
| LOC724307 | short stature homeobox protein 2-like | -0.2733143 | 2.1655622 | -1.3561829 |
| LOC102656349 | uncharacterized LOC102656349 | -0.1862825 | 2.1626912 | 2.7985185 |
| LOC552722 | glyoxalase domain-containing protein 4 | 0.0546942 | 2.1593264 | 5.8626184 |
| LOC100576194 | forkhead box protein J1-B-like | -1.2851554 | 2.1560418 | -1.2525532 |
| LOC102656106 | uncharacterized LOC102656106 | -0.3695465 | 2.1507973 | 0.7105843 |
| LOC551197 | probable cytochrome P450 6a13 | -0.8984900 | 2.1301752 | 7.7929124 |
| LOC100577810 | uncharacterized LOC100577810 | -0.5502749 | 2.1267026 | -0.6953606 |
| LOC102655605 | uncharacterized LOC102655605 | -0.7561842 | 2.1078355 | -0.0359908 |
| LOC100577259 | uncharacterized LOC100577259 | 0.0121746 | 2.1028466 | -0.4904963 |
| LOC408808 | prosaposin | -0.4449822 | 2.0963408 | 8.3362698 |
| LOC412808 | aminopeptidase Ey | -0.4163232 | 2.0961637 | 5.8722986 |
| LOC107964935 | uncharacterized LOC107964935 | 0.1814039 | 2.0773618 | -0.1620442 |
| LOC100578508 | uncharacterized LOC100578508 | 0.8537169 | 2.0748639 | 1.1342973 |
| LOC409022 | fruitless | -0.1533300 | 2.0697227 | 8.3028705 |
| LOC551962 | uncharacterized protein C6orf106 homolog | 0.0825187 | 2.0610111 | 6.2646633 |
| LOC107965868 | G-box-binding factor-like | -0.3931985 | 2.0388717 | 1.6547767 |
| LOC100577635 | uncharacterized LOC100577635 | 0.3514937 | 2.0380705 | 2.1620842 |
| LOC408618 | furin-like protease 2 | -0.3687492 | 2.0332787 | 6.6156132 |
| LOC100578741 | uncharacterized LOC100578741 | 0.2033861 | 2.0270089 | -1.0781177 |
| TyrR | tyramine receptor | -0.2806680 | 2.0230860 | 1.1656670 |
| LOC552295 | translocon-associated protein subunit gamma-like | -0.9096619 | 2.0224664 | 7.8514352 |
| LOC724778 | LIM/homeobox protein LMX-1.2-like | -0.2265163 | 2.0185797 | -0.1097268 |
| LOC408526 | 60S ribosomal protein L4 | 0.2315825 | 2.0178764 | 11.2805562 |
| LOC107965681 | uncharacterized LOC107965681 | 0.1349527 | 2.0149809 | 0.0331246 |
| LOC100578177 | uncharacterized LOC100578177 | -0.1814364 | 2.0116604 | 3.4006340 |
| LOC725548 | protein FAM151B | 0.2423182 | 2.0083710 | 6.6667857 |
| LOC107963995 | coagulation factor X-like | -0.5525010 | 2.0029018 | 0.4761564 |
| LOC410175 | F-box/LRR-repeat protein 14 | -0.0646519 | 2.0012053 | 5.8555060 |
| LOC551846 | membralin-like | -0.2887749 | 1.9978163 | 7.2495790 |
| LOC551009 | protein-glutamate O-methyltransferase-like | 0.5906016 | 1.9953706 | 6.3628947 |
| LOC725954 | copper homeostasis protein cutC homolog | 0.0825381 | 1.9937779 | 1.8499167 |
| LOC725698 | uncharacterized LOC725698 | -0.2525466 | 1.9936176 | -0.8423119 |
| LOC102655522 | uncharacterized LOC102655522 | -0.2276482 | 1.9925581 | 2.9918245 |
| LOC100579026 | uncharacterized LOC100579026 | -0.2037508 | 1.9919286 | 2.7624085 |
| LOC107965451 | uncharacterized LOC107965451 | -0.5086620 | 1.9918363 | 0.2046141 |
| LOC551319 | titin-like | -0.5561343 | 1.9778083 | 10.8238613 |
| LOC726188 | uncharacterized LOC726188 | 0.3991752 | 1.9752596 | 4.2327508 |
| LOC409801 | esterase E4-like | 0.2933827 | 1.9597116 | 0.2611011 |
| LOC107964003 | zinc finger protein 169-like | 0.0434365 | 1.9525953 | 0.3941718 |
| LOC102656029 | uncharacterized LOC102656029 | -1.2336090 | 1.9516040 | -1.6079340 |
| LOC107965055 | uncharacterized LOC107965055 | 0.1390209 | 1.9467744 | -0.0136997 |
| LOC552195 | uncharacterized LOC552195 | -1.2842122 | 1.9437503 | 2.5290530 |
| LOC409735 | transcription initiation factor TFIID subunit 6 | -0.1474822 | 1.9401192 | 5.4498335 |
| CPR3 | cuticular protein 3 | -0.9759127 | 1.9381133 | 9.5622877 |
| LOC726725 | pro-resilin | -0.3159739 | 1.9340553 | 0.5993680 |
| LOC102655393 | uncharacterized LOC102655393 | 0.0361699 | 1.9296063 | 0.2123039 |
| LOC725450 | histone H2A | 0.1065094 | 1.9281289 | -0.0960873 |
| LOC411729 | sodium- and chloride-dependent GABA transporter ine | 0.4562095 | 1.9172655 | 4.7801080 |
| LOC726493 | uncharacterized LOC726493 | -0.0906721 | 1.9138468 | -0.1633063 |
| LOC409776 | bromodomain-containing protein 4-like | -1.1286017 | 1.9090943 | -1.4265499 |
| LOC408894 | transducin-like enhancer protein 4 | 0.1283870 | 1.8994064 | 5.3198963 |
| LOC102654017 | uncharacterized LOC102654017 | -0.4821871 | 1.8955376 | 0.1490869 |
| LOC100577132 | uncharacterized LOC100577132 | -1.0493798 | 1.8909865 | 3.7081452 |
| LOC551176 | actin, clone 205-like | -0.2728031 | 1.8862538 | 9.6734135 |
| LOC724969 | actin-binding protein IPP | 0.1033029 | 1.8853715 | 5.1936400 |
| LOC410555 | insulin-like growth factor-binding protein complex acid labile subunit | 0.6273197 | 1.8820515 | 4.7927655 |
| LOC102654369 | la-related protein 6 | -1.2544536 | 1.8818422 | 6.2411602 |
| LOC100576847 | cytochrome c oxidase subunit 6B1-like | -0.1628243 | 1.8763285 | 1.2512436 |
| LOC413473 | GTPase-activating Rap/Ran-GAP domain-like protein 3 | 0.7108530 | 1.8749588 | 5.8845489 |
| LOC724336 | tRNA dimethylallyltransferase, mitochondrial-like | 0.4357909 | 1.8658857 | 4.9042261 |
| LOC107964465 | uncharacterized LOC107964465 | -0.2456268 | 1.8638122 | -0.5479434 |
| LOC726375 | bone morphogenetic protein 2-B | 0.3088579 | 1.8536728 | 5.7845693 |
| LOC408332 | zinc finger protein 236-like | -0.0610122 | 1.8532477 | 5.6117603 |
| LOC409937 | neither inactivation nor afterpotential protein C | -0.1743397 | 1.8512153 | 1.7879842 |
| LOC725219 | TWiK family of potassium channels protein 7-like | 0.3439808 | 1.8354053 | 0.7940504 |
| LOC551651 | ferritin subunit | -0.2805472 | 1.8333094 | 9.5657464 |
| LOC409807 | arginine kinase-like | -0.5246039 | 1.8305266 | 0.5072696 |
| LOC107964290 | zinc finger protein 93-like | 0.8038798 | 1.8291814 | 2.1186054 |
| LOC726228 | uncharacterized LOC726228 | -0.1115537 | 1.8277105 | -0.2899413 |
| LOC107964888 | uncharacterized LOC107964888 | -0.9337300 | 1.8222344 | 0.8004917 |
| LOC411630 | ribosomal protein S6 kinase alpha-5 | 0.1698302 | 1.8151092 | 6.4502442 |
| LOC409856 | guanine nucleotide-releasing factor 2 | -0.2490270 | 1.8112829 | 5.4526742 |
| LOC411507 | cyclin-dependent kinase-like 4 | 0.1407476 | 1.8106193 | -1.0396303 |
| LOC107964684 | uncharacterized LOC107964684 | -0.4543502 | 1.8087209 | -2.0149530 |
| LOC410075 | actin, muscle-like | -0.6121979 | 1.8036792 | 7.8572970 |
| LOC102656403 | histone-lysine N-methyltransferase SETMAR-like | -0.3253087 | 1.7867933 | 3.0538787 |
| LOC107965487 | uncharacterized LOC107965487 | -0.1067530 | 1.7862276 | 5.8453663 |
| LOC107966033 | uncharacterized LOC107966033 | 0.0408063 | 1.7849704 | -1.0849039 |
| LOC102653628 | uncharacterized LOC102653628 | -0.1567784 | 1.7494310 | 0.7405083 |
| crh-BP | corticotropin releasing hormone binding protein | -0.3857526 | 1.7426195 | -1.2074764 |
| LOC551712 | lipoyltransferase 1, mitochondrial | 0.0487843 | 1.7307470 | 6.6431415 |
| LOC100577222 | uncharacterized LOC100577222 | -0.5716767 | 1.7282733 | 2.0470488 |
| LOC102655945 | myb/SANT-like DNA-binding domain-containing protein 3 | -0.1255377 | 1.7264788 | -1.7558953 |
| LOC107964969 | uncharacterized LOC107964969 | -1.2528677 | 1.7228528 | 2.6928184 |
| LOC107964009 | uncharacterized LOC107964009 | 0.1233284 | 1.7200964 | -0.6168483 |
| LOC102654965 | uncharacterized LOC102654965 | 0.3767674 | 1.7089348 | 0.1090724 |
| LOC100578801 | uncharacterized LOC100578801 | -0.2642167 | 1.7012721 | 1.4901084 |
| LOC107964131 | uncharacterized LOC107964131 | -0.7338575 | 1.6965064 | -0.6769211 |
| LOC551766 | ATP synthase subunit beta, mitochondrial | 0.3528652 | 1.6954031 | 10.9832457 |
| LOC107964483 | uncharacterized LOC107964483 | -0.3902562 | 1.6871996 | -1.7002888 |
| LOC410062 | mitochondrial folate transporter/carrier | 0.1824656 | 1.6862289 | 6.5522935 |
| LOC100578953 | dual specificity protein phosphatase 15 | -0.0206858 | 1.6845262 | 3.4758478 |
| LOC552369 | synaptotagmin-like protein 5 | -0.2347317 | 1.6602179 | 5.3582494 |
| LOC725046 | uncharacterized LOC725046 | 0.0546518 | 1.6582983 | 6.8857722 |
| LOC727168 | 1,4-alpha-glucan-branching enzyme | -0.1129577 | 1.6579393 | 6.3968502 |
| LOC100576534 | zinc finger protein 580-like | -0.2931629 | 1.6574875 | 0.4046764 |
| LOC552776 | signal recognition particle subunit SRP68 | 0.0686685 | 1.6554695 | 7.7927352 |
| LOC410626 | sodium-coupled monocarboxylate transporter 1 | -0.1148383 | 1.6539909 | 6.6366825 |
| LOC100577764 | ras-related protein Rab-5C | -0.1320598 | 1.6539479 | 7.2370502 |
| LOC100578984 | protein charlatan | -0.0843370 | 1.6520132 | 2.8348790 |
| LOC408865 | uncharacterized LOC408865 | -0.1557271 | 1.6434506 | 4.0145259 |
| LOC552279 | sodium-independent sulfate anion transporter-like | -0.2778217 | 1.6367037 | 5.3322947 |
| LOC552661 | nicotinic acetylcholine receptor alpha5 subunit-like | 0.1620324 | 1.6337775 | 0.9221277 |
| LOC410454 | putative sodium-dependent multivitamin transporter | -0.4956348 | 1.6317560 | -0.7023564 |
| LOC102655465 | uncharacterized LOC102655465 | -0.0809044 | 1.6262782 | -0.8529371 |
| LOC412941 | synaptic vesicle glycoprotein 2B-like | 0.7990005 | 1.6247812 | 5.3853681 |
| LOC552142 | latrophilin Cirl-like | -0.0819661 | 1.6224526 | 6.2100016 |
| LOC551460 | homeobox protein cut | 0.1541566 | 1.6176404 | 7.1125430 |
| LOC107965844 | uncharacterized LOC107965844 | -0.2117030 | 1.6135265 | 1.5724381 |
| LOC552735 | uncharacterized LOC552735 | -0.2445393 | 1.6100154 | 0.4380078 |
| LOC107965595 | uncharacterized LOC107965595 | -0.0298829 | 1.6090190 | -0.6775121 |
| LOC102653953 | uncharacterized LOC102653953 | -0.2131853 | 1.6044938 | -0.8720607 |
| LOC411535 | rho GTPase-activating protein 44 | 0.0562574 | 1.5835708 | 6.0949929 |
| LOC100576859 | cilia- and flagella-associated protein 36 | -0.4401514 | 1.5771398 | 0.8533714 |
| LOC409829 | F-box/LRR-repeat protein 20 | -0.5140952 | 1.5770545 | 3.0689816 |
| LOC552679 | cytochrome P450 4c3 | 1.5018412 | 1.5763140 | 4.3148690 |
| LOC410795 | trehalase | -0.1191553 | 1.5760612 | 7.0014413 |
| LOC413183 | G1/S-specific cyclin-D2 | -0.0412396 | 1.5754494 | 6.3621041 |
| LOC102654182 | protein toll-like | -0.5535849 | 1.5741269 | 0.4564682 |
| LOC551600 | endochitinase | -0.9398456 | 1.5580681 | 6.7789035 |
| LOC726655 | uncharacterized LOC726655 | -0.1777293 | 1.5557434 | -0.1640155 |
| LOC100577932 | uncharacterized LOC100577932 | -0.5619588 | 1.5494614 | 0.2320907 |
| LOC413768 | 2-oxoglutarate dehydrogenase, mitochondrial-like | -0.9552767 | 1.5487310 | 2.2280623 |
| LOC100578665 | uncharacterized LOC100578665 | 0.0052508 | 1.5472751 | 4.7156793 |
| LOC100577696 | fez family zinc finger protein 2-like | -0.4912972 | 1.5456153 | 0.0576441 |
| LOC727163 | uncharacterized LOC727163 | 1.0344724 | 1.5341054 | 0.3159043 |
| LOC409613 | GTP-binding protein SAR1 | 0.0419089 | 1.5175120 | 8.1252489 |
| LOC409923 | leishmanolysin-like peptidase | 0.1854789 | 1.5167339 | 4.5147474 |
| LOC100576983 | uncharacterized LOC100576983 | -0.2365015 | 1.5149944 | 1.4114062 |
| CPR6 | cuticular protein 6 | -0.6766364 | 1.5134648 | 4.9989121 |
| LOC408884 | transcription factor SOX-5 | -0.8328140 | 1.5061088 | 5.9970690 |
| LOC409928 | RNA polymerase II elongation factor Ell | -0.1840730 | 1.4962815 | 7.4175861 |
| LOC100576466 | ATP-dependent DNA helicase Q4 | 1.4057422 | 1.4960620 | 0.6781234 |
| LOC411533 | alpha-2-macroglobulin receptor-associated protein | -0.1800364 | 1.4893910 | 6.8293018 |
| LOC408641 | uncharacterized LOC408641 | -0.5579175 | 1.4869318 | 5.1527449 |
| LOC107964103 | uncharacterized LOC107964103 | -0.1093260 | 1.4862051 | 2.7322057 |
| LOC552504 | titin-like | 0.1222599 | 1.4854223 | 2.0663687 |
| LOC408741 | ras-related protein Rab-37 | -0.4119286 | 1.4852197 | 2.1606589 |
| Dll | distal-less | -0.4585459 | 1.4621333 | 4.3554434 |
| LOC725671 | homeobox protein Nkx-2.8-like | 0.4514720 | 1.4607348 | 5.5513348 |
| LOC725899 | alpha-N-acetylgalactosaminidase | 0.6579788 | 1.4568807 | 9.0665645 |
| LOC102654429 | uncharacterized LOC102654429 | -0.3617545 | 1.4407476 | -0.9806674 |
| LOC100578025 | proline-rich protein 4-like | -0.9854865 | 1.4365367 | -0.8270441 |
| LOC408983 | protein transport protein Sec23A | 0.0886113 | 1.4363633 | 8.4308692 |
| LOC107964279 | uncharacterized LOC107964279 | -0.7655142 | 1.4292510 | -1.3437152 |
| LOC102656108 | uncharacterized LOC102656108 | -0.0853994 | 1.4281095 | 0.7128630 |
| LOC552536 | adipocyte plasma membrane-associated protein | -0.1139043 | 1.4258249 | 7.0820431 |
| LOC100576592 | uncharacterized LOC100576592 | -0.0683022 | 1.4172716 | 2.4919641 |
| LOC102656010 | uncharacterized LOC102656010 | -0.8329042 | 1.4150734 | -0.3870054 |
| LOC552101 | msx2-interacting protein-like | 0.9053819 | 1.4113833 | 5.1666407 |
| LOC410253 | ataxin-2 homolog | 0.1282498 | 1.4107076 | 6.7346332 |
| LOC107964137 | uncharacterized LOC107964137 | -0.5464674 | 1.4084550 | -0.1084086 |
| LOC102655993 | vicilin-like seed storage protein At2g18540 | -0.2161138 | 1.4076921 | 0.0999463 |
| LOC408828 | uncharacterized MFS-type transporter C09D4.1 | -0.1563447 | 1.3938745 | 3.5108181 |
| LOC100578816 | uncharacterized LOC100578816 | 0.4202616 | 1.3921514 | 3.0242656 |
| LOC725978 | translation initiation factor IF-2-like | -0.2514883 | 1.3857922 | -0.1640412 |
| LOC107964148 | uncharacterized LOC107964148 | -0.6483547 | 1.3841566 | -0.5341111 |
| LOC102655416 | uncharacterized LOC102655416 | -0.5313277 | 1.3790135 | -0.7306122 |
| LOC102656864 | uncharacterized LOC102656864 | 0.4553913 | 1.3744038 | -0.2781807 |
| LOC102655567 | uncharacterized LOC102655567 | -0.3537226 | 1.3709906 | -0.4301723 |
| LOC726538 | homeobox protein prophet of Pit-1 | -0.8909848 | 1.3669967 | -1.5377694 |
| LOC100577360 | uncharacterized LOC100577360 | -0.5479444 | 1.3619318 | 1.2222564 |
| LOC552534 | uncharacterized LOC552534 | -0.1712328 | 1.3573273 | 7.0588528 |
| LOC726457 | flocculation protein FLO11-like | 0.3343357 | 1.3476399 | 1.5034541 |
| LOC410583 | ornithine aminotransferase, mitochondrial | 0.2911179 | 1.3402168 | 10.2671447 |
| LOC102654727 | uncharacterized LOC102654727 | -0.9150463 | 1.3400372 | -0.3237334 |
| LOC100576828 | protein maelstrom homolog | -0.1847844 | 1.3331545 | 3.7477965 |
| LOC107964715 | uncharacterized LOC107964715 | -0.9636983 | 1.3314732 | -1.4644901 |
| LOC724811 | kynurenine–oxoglutarate transaminase 3-like | -0.1666557 | 1.3298095 | 6.3034500 |
| LOC100577920 | uncharacterized LOC100577920 | -0.6250557 | 1.3274075 | 3.6632741 |
| Usp | ultraspiracle | 0.1552259 | 1.3258843 | 5.3964878 |
| LOC100578924 | zinc finger protein 271-like | -0.0885422 | 1.3257759 | 5.8727385 |
| LOC107964074 | uncharacterized LOC107964074 | -1.6674736 | 1.3237770 | -0.7218976 |
| LOC412230 | dynein heavy chain 3, axonemal | 0.0684403 | 1.3142087 | 4.0160106 |
| LOC107965341 | uncharacterized LOC107965341 | 0.7738818 | 1.3033870 | -1.5943072 |
| LOC412526 | protein disulfide-isomerase A6 | -0.4511213 | 1.2882622 | 8.4779968 |
| LOC409876 | interferon regulatory factor 2-binding protein-like B | -0.2892665 | 1.2863213 | 8.1036658 |
| PPO | phenoloxidase subunit A3 | 0.1591274 | 1.2859573 | 4.8948286 |
| LOC413596 | receptor-type guanylate cyclase gcy-4 | -0.5875027 | 1.2851841 | 5.9685651 |
| LOC107965160 | uncharacterized LOC107965160 | -0.5203062 | 1.2837804 | -0.8619200 |
| LOC102655757 | uncharacterized LOC102655757 | -0.3492540 | 1.2835712 | -1.2577687 |
| LOC107965291 | uncharacterized LOC107965291 | -0.4466855 | 1.2781486 | -1.4283075 |
| Hsc70-3 | heat shock 70 kDa protein cognate 3 | -0.2805600 | 1.2778385 | 11.6744308 |
| LOC552170 | ubiquitin-like protein 7 | -0.0228205 | 1.2755762 | 5.7539102 |
| LOC724495 | ecdysis triggering hormone receptor | -0.2940431 | 1.2754263 | 0.5187219 |
| LOC410272 | cationic amino acid transporter 2 | -0.3454429 | 1.2741867 | 5.9672974 |
| LOC100578576 | smoothelin-like protein 1 | -0.3506978 | 1.2645946 | 0.5505022 |
| LOC107965108 | uncharacterized LOC107965108 | -0.9340612 | 1.2643621 | -0.2394706 |
| CSP6 | chemosensory protein 6 | -0.7701300 | 1.2611916 | 2.6373989 |
| LOC413394 | vesicle-trafficking protein SEC22b-B | -0.2894823 | 1.2610318 | 6.2524120 |
| LOC100576699 | uncharacterized LOC100576699 | -0.3950496 | 1.2451855 | 2.7180596 |
| LOC411181 | sodium- and chloride-dependent glycine transporter 1 | -0.4367496 | 1.2348282 | -0.7036454 |
| LOC102653954 | uncharacterized LOC102653954 | 0.0559968 | 1.2298867 | 0.9519489 |
| LOC100577719 | uncharacterized LOC100577719 | 0.7507223 | 1.2237964 | 3.6737989 |
| LOC100578621 | uncharacterized LOC100578621 | 0.4288641 | 1.2234954 | 7.6364210 |
| LOC107966114 | uncharacterized LOC107966114 | 0.0156995 | 1.2220961 | -1.8297885 |
| LOC552489 | SEC14-like protein 2 | -0.2333623 | 1.2105477 | 4.5848721 |
| LOC726553 | helix-loop-helix protein 1-like | -0.7830792 | 1.2101135 | -1.4433391 |
| LOC410386 | tolloid-like protein 1 | -0.3089981 | 1.2085585 | 6.2141191 |
| LOC413995 | sensory neuron membrane protein 1 | -0.6051037 | 1.2020985 | -0.9845466 |
| LOC107965037 | probable serine/threonine-protein kinase DDB_G0278845 | 0.1005684 | 1.1976900 | 3.9260494 |
| LOC102656575 | uncharacterized LOC102656575 | 0.1016015 | 1.1972215 | 0.6856210 |
| LOC100576287 | uncharacterized LOC100576287 | -0.3892568 | 1.1931672 | -1.4610616 |
| LOC107964970 | uncharacterized LOC107964970 | -1.0622390 | 1.1863110 | -0.8547226 |
| LOC725305 | uncharacterized LOC725305 | -0.7090954 | 1.1845757 | 5.7505470 |
| LOC409396 | eukaryotic translation initiation factor 4E-binding protein Mextli | 0.1171917 | 1.1827425 | 4.7680244 |
| LOC409835 | E3 ubiquitin-protein ligase MARCH2 | 0.2670434 | 1.1775358 | 1.6938994 |
| LOC551857 | sepiapterin reductase | 0.5299548 | 1.1641764 | 4.3728390 |
| LOC551868 | kelch-like protein 5 | -0.6455617 | 1.1628528 | 2.8561886 |
| LOC726204 | hairy/enhancer-of-split related with YRPW motif protein 1 | -0.0997184 | 1.1628476 | 7.1029311 |
| LOC107965891 | LYR motif-containing protein 5 | 0.0363867 | 1.1615346 | 2.3095677 |
| LOC725479 | dynein heavy chain 5, axonemal | 0.3078625 | 1.1586650 | 0.0273700 |
| LOC107964874 | uncharacterized LOC107964874 | 0.1179080 | 1.1560000 | -0.7918724 |
| LOC726748 | uncharacterized LOC726748 | -0.2005267 | 1.1533607 | -1.4332871 |
| LOC409536 | arginine-glutamic acid dipeptide repeats protein | -0.2900493 | 1.1479876 | 7.0147238 |
| LOC102654664 | uncharacterized LOC102654664 | 0.3090478 | 1.1470679 | -0.3008945 |
| LOC100642173 | uncharacterized LOC100642173 | -0.4189490 | 1.1441612 | 2.8214158 |
| LOC102656430 | uncharacterized LOC102656430 | -0.1335219 | 1.1435464 | 0.7789598 |
| LOC102654860 | uncharacterized LOC102654860 | 0.1235276 | 1.1395466 | -0.6529129 |
| LOC102656410 | uncharacterized LOC102656410 | -1.1191268 | 1.1380767 | -1.8490345 |
| LOC408821 | uncharacterized LOC408821 | -0.4742982 | 1.1373152 | 6.6726309 |
| LOC100576540 | vacuolar protein sorting-associated protein 27-like | -0.6843811 | 1.1362284 | 9.4472885 |
| LOC409888 | uncharacterized LOC409888 | 0.0280741 | 1.1346029 | 7.6303669 |
| LOC412141 | tumor suppressor candidate 3 | -0.2138705 | 1.1288366 | 6.8601538 |
| LOC552602 | transmembrane emp24 domain-containing protein-like | -0.1555040 | 1.1286829 | 7.7950362 |
| LOC100578448 | uncharacterized LOC100578448 | -0.3607876 | 1.1228950 | 2.1910931 |
| LOC410347 | protein big brother | -0.5140730 | 1.1160355 | 2.5231665 |
| LOC408685 | MAP7 domain-containing protein 1 | -0.3592114 | 1.1112917 | 9.3557394 |
| LOC107964015 | uncharacterized LOC107964015 | 0.7491501 | 1.1097606 | 0.8043904 |
| LOC107964161 | uncharacterized LOC107964161 | -0.4313537 | 1.1092867 | -1.3518769 |
| LOC102654110 | uncharacterized LOC102654110 | -0.5574418 | 1.1024402 | -1.9165013 |
| LOC725081 | segmentation protein cap’n’collar | -0.2034139 | 1.0891655 | 7.6789045 |
| LOC102656082 | kinesin-like protein KIF20B | -0.8987007 | 1.0884537 | -2.5312128 |
| LOC102655477 | uncharacterized LOC102655477 | -0.7182375 | 1.0827309 | 0.0735124 |
| LOC726600 | intraflagellar transport protein 56 | -0.4486185 | 1.0789569 | -1.2297908 |
| LOC107965334 | uncharacterized LOC107965334 | -1.6447196 | 1.0729923 | -1.3545278 |
| LOC100577912 | uncharacterized protein C15orf61 homolog | 0.4561453 | 1.0702158 | 2.2425307 |
| LOC102654817 | uncharacterized LOC102654817 | 0.3705308 | 1.0674791 | -1.5678662 |
| LOC102654142 | uncharacterized LOC102654142 | -0.5478629 | 1.0645040 | -0.6720552 |
| LOC102654763 | uncharacterized LOC102654763 | 0.0000000 | 1.0580770 | -2.6459890 |
| LOC411406 | zinc metalloproteinase nas-13-like | -1.3546604 | 1.0532964 | 5.3037776 |
| LOC411632 | neuropeptide CCHamide-1 receptor-like | -0.6756891 | 1.0503634 | 0.5189846 |
| LOC409316 | coronin-2B-like | 0.0166373 | 1.0491889 | 4.4210537 |
| LOC100578165 | uncharacterized LOC100578165 | -0.0260150 | 1.0488955 | 4.9417266 |
| LOC408982 | calcineurin B homologous protein 1 | 0.2462497 | 1.0462368 | 5.5287296 |
| LOC102655251 | uncharacterized LOC102655251 | -0.7900879 | 1.0457552 | -0.4605185 |
| LOC107964307 | uncharacterized LOC107964307 | -0.3279169 | 1.0450849 | 1.3986976 |
| LOC102654301 | uncharacterized LOC102654301 | -0.2201989 | 1.0414991 | -1.2206280 |
| LOC726727 | ecotropic viral integration site 5 ortholog-like | 0.0379069 | 1.0390798 | 3.3130166 |
| LOC409208 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter | 0.6038145 | 1.0371593 | 4.0516309 |
| LOC725853 | uncharacterized LOC725853 | 0.2270154 | 1.0337845 | 0.8103619 |
| LOC413043 | UDP-glucuronosyltransferase 1-3-like | -0.7570480 | 1.0308650 | 4.1175734 |
| LOC727035 | paired box pox-neuro protein | -0.2333366 | 1.0306823 | -1.2697976 |
| LOC412465 | tetraspanin-7 | -0.0689496 | 1.0262253 | 0.4618722 |
| LOC411175 | protein groucho-1-like | -0.2999181 | 1.0255535 | 6.2380151 |
| LOC100577822 | uncharacterized LOC100577822 | 0.0897786 | 1.0246014 | 0.9604293 |
| LOC408369 | putative glutathione-specific gamma-glutamylcyclotransferase 2 | 0.1529900 | 1.0187338 | 4.4923272 |
| LOC102655139 | uncharacterized LOC102655139 | -0.2165674 | 1.0175797 | -0.3797269 |
| LOC411301 | dynein heavy chain 10, axonemal | -0.1227808 | 1.0159047 | 1.4522257 |
| LOC107964606 | uncharacterized LOC107964606 | -0.6272699 | 1.0107094 | -1.3622712 |
| LOC409784 | uncharacterized LOC409784 | -0.1047345 | 1.0106322 | 6.2477433 |
| LOC102655685 | uncharacterized LOC102655685 | -0.2770480 | 1.0055967 | 2.1911260 |
| LOC409150 | enoyl Coenzyme A hydratase, short chain, 1, mitochondrial | 0.0739667 | 1.0025285 | 9.8738029 |
| LOC410904 | formin-like protein CG32138 | 0.7175661 | 1.0023385 | 5.6235550 |
| LOC107965517 | uncharacterized LOC107965517 | -0.4782509 | 1.0019433 | -1.0602737 |
| LOC413228 | 5-aminolevulinate synthase, erythroid-specific, mitochondrial | -0.2871115 | 0.9970322 | 4.8082886 |
| LOC727546 | uncharacterized LOC727546 | -0.4251087 | 0.9943579 | 9.8803838 |
| LOC107964341 | uncharacterized LOC107964341 | -0.5010005 | 0.9928363 | -0.4881262 |
| LOC725676 | SEC14-like protein 2 | -0.6773395 | 0.9860026 | 4.1071068 |
| Hbg3 | alpha-glucosidase | 0.8487163 | 0.9857527 | 6.9013606 |
| LOC408365 | uncharacterized LOC408365 | 0.2326142 | 0.9855751 | 9.2890891 |
| LOC412503 | mitochondrial dicarboxylate carrier-like | 0.0537833 | 0.9809919 | 4.9871285 |
| LOC726076 | centrosomal protein of 131 kDa | -0.1174223 | 0.9754365 | 0.3083137 |
| LOC100578919 | uncharacterized LOC100578919 | 0.9139535 | 0.9651916 | 1.6195685 |
| LOC102655188 | zinc finger protein 707-like | -0.3605749 | 0.9629352 | 1.4326117 |
| LOC102655581 | uncharacterized LOC102655581 | 0.0105907 | 0.9609217 | 4.9793668 |
| LOC102656270 | uncharacterized LOC102656270 | -0.1065294 | 0.9603434 | -0.0130782 |
| LOC102655868 | uncharacterized LOC102655868 | -0.5806466 | 0.9503036 | -0.8118725 |
| LOC100576170 | mucin-1-like | 0.2127385 | 0.9499920 | 9.8380605 |
| LOC410520 | uncharacterized oxidoreductase YjmC | -0.6063091 | 0.9323512 | 0.2265283 |
| LOC107965550 | uncharacterized LOC107965550 | -1.1984952 | 0.9281244 | -1.2432424 |
| LOC412646 | uncharacterized LOC412646 | 0.4385604 | 0.9252716 | 4.4876215 |
| LOC411262 | leucine-zipper-like transcriptional regulator 1 | 0.0775237 | 0.9240490 | 4.1881016 |
| LOC100576837 | S-adenosylmethionine decarboxylase proenzyme-like | -0.0008206 | 0.9225157 | 1.0280750 |
| LOC102655895 | uncharacterized LOC102655895 | 0.2078792 | 0.9218941 | 1.2211967 |
| LOC100578187 | uncharacterized LOC100578187 | -0.3959985 | 0.9127514 | 1.0871555 |
| LOC410448 | carcinine transporter | 0.9280753 | 0.8989277 | 5.4401202 |
| LOC724575 | alpha-(1,3)-fucosyltransferase C-like | -0.3914488 | 0.8982104 | 4.1715458 |
| LOC107964048 | uncharacterized LOC107964048 | -0.5407017 | 0.8966273 | 2.6085948 |
| LOC724904 | acylphosphatase-2 | -0.4994106 | 0.8821138 | 0.2004539 |
| Adk1 | adenylate kinase 1 | -0.4078126 | 0.8795196 | 1.8578533 |
| LOC552685 | pupal cuticle protein-like | 0.2213355 | 0.8751125 | -0.3249907 |
| LOC100578446 | pituitary homeobox x | 0.1426445 | 0.8734488 | 4.8669148 |
| LOC102655506 | uncharacterized LOC102655506 | 0.3264722 | 0.8734165 | -0.2818218 |
| LOC102656490 | uncharacterized LOC102656490 | -0.2457920 | 0.8722327 | -0.2668006 |
| LOC102656618 | uncharacterized LOC102656618 | -0.2269385 | 0.8708078 | 4.3437089 |
| LOC725720 | muscle, skeletal receptor tyrosine protein kinase-like | -0.0129461 | 0.8704110 | 4.5395562 |
| LOC413666 | peroxisome biogenesis factor 1 | 0.4955173 | 0.8611755 | 5.8391736 |
| LOC412167 | X-linked retinitis pigmentosa GTPase regulator | -0.4966398 | 0.8572260 | -0.6161663 |
| LOC102656765 | uncharacterized LOC102656765 | -0.0861443 | 0.8569777 | 5.4768086 |
| LOC406145 | secapin | -1.3389851 | 0.8559189 | -2.4045446 |
| LOC414002 | uncharacterized LOC414002 | 0.5111893 | 0.8544659 | 3.2585266 |
| LOC107964202 | uncharacterized LOC107964202 | -0.2522858 | 0.8541663 | 6.1190446 |
| LOC107965718 | uncharacterized LOC107965718 | -0.1536971 | 0.8509972 | -0.2639721 |
| LOC100577211 | uncharacterized LOC100577211 | -0.5685714 | 0.8501177 | -1.1172732 |
| LOC550695 | carnitine O-palmitoyltransferase 1, liver isoform | -0.0719337 | 0.8438166 | 6.6503493 |
| LOC725233 | uncharacterized LOC725233 | -1.0209871 | 0.8421654 | 4.6359406 |
| LOC725574 | LIM/homeobox protein Awh | -0.3067417 | 0.8409017 | 0.8857238 |
| LOC552171 | uncharacterized LOC552171 | -0.0380867 | 0.8369565 | 3.5199799 |
| LOC551680 | histamine-gated chloride channel 2 | -0.5380552 | 0.8330890 | -1.3150937 |
| LOC102656548 | nucleoside diphosphate kinase homolog 5-like | -0.3071104 | 0.8293854 | 2.8856883 |
| LOC102654482 | uncharacterized LOC102654482 | -0.1025381 | 0.8254583 | 0.1013405 |
| LOC107965106 | uncharacterized LOC107965106 | -0.5407441 | 0.8249023 | -1.0528600 |
| LOC107964408 | uncharacterized LOC107964408 | -0.2290142 | 0.8231876 | 0.5842967 |
| LOC107964806 | uncharacterized LOC107964806 | -0.9391443 | 0.8169563 | -0.4814684 |
| LOC408844 | dual specificity protein phosphatase 10 | -0.2746645 | 0.8159316 | 7.4252748 |
| LOC411486 | uncharacterized LOC411486 | -1.5149378 | 0.8083005 | -2.0401470 |
| LOC102654439 | uncharacterized LOC102654439 | 0.6846451 | 0.8080508 | -0.5284993 |
| LOC725831 | uncharacterized LOC725831 | -0.6109239 | 0.8073474 | -0.6605776 |
| LOC102656809 | uncharacterized LOC102656809 | -0.1524280 | 0.8060748 | -1.2290141 |
| LOC107964130 | uncharacterized LOC107964130 | -0.5666359 | 0.8050992 | -1.4145865 |
| LOC551838 | rho GTPase-activating protein 1 | -0.1650675 | 0.8034273 | 3.9444390 |
| LOC107965331 | uncharacterized LOC107965331 | -0.8577120 | 0.7934712 | -1.1265529 |
| LOC406081 | glucose oxidase | 0.3565853 | 0.7884909 | -0.3887011 |
| LOC102655794 | uncharacterized LOC102655794 | 0.6417245 | 0.7880344 | -0.6678950 |
| LOC102656888 | uncharacterized LOC102656888 | 0.0053113 | 0.7817179 | 0.0705514 |
| LOC102655405 | uncharacterized LOC102655405 | -0.1132964 | 0.7811880 | -0.0522362 |
| LOC100577198 | uncharacterized LOC100577198 | -1.0067948 | 0.7807198 | 4.8087945 |
| LOC102656710 | uncharacterized LOC102656710 | -0.1422065 | 0.7798131 | 0.2007064 |
| CPR13 | cuticular protein 13 | 0.3169466 | 0.7795487 | 7.1602363 |
| LOC107965109 | uncharacterized LOC107965109 | -0.4952644 | 0.7794770 | -1.3989964 |
| LOC724339 | phosphatidylinositol N-acetylglucosaminyltransferase subunit Q | -0.5599443 | 0.7792120 | 2.5555280 |
| LOC100577727 | protein MANBAL | -0.4165525 | 0.7789575 | 2.5772564 |
| LOC726304 | uncharacterized protein C17orf59 homolog | 0.3531216 | 0.7759612 | 3.9449629 |
| LOC100576662 | uncharacterized LOC100576662 | -0.0932746 | 0.7750237 | 4.2393609 |
| LOC100578350 | dipeptidase 1-like | -0.6655718 | 0.7734615 | -1.6867618 |
| LOC102655928 | uncharacterized LOC102655928 | -0.1820670 | 0.7708214 | 1.5497309 |
| LOC100577486 | uncharacterized LOC100577486 | 0.1850618 | 0.7653368 | 7.8954074 |
| LOC411576 | phosphoglycerate kinase | -0.0135036 | 0.7617260 | 9.3609685 |
| LOC100578830 | uncharacterized LOC100578830 | 0.7845524 | 0.7585362 | -0.5844538 |
| LOC107965004 | G-box-binding factor | 1.0897648 | 0.7550309 | 9.3113863 |
| LOC102655509 | uncharacterized LOC102655509 | -0.6505860 | 0.7530892 | -0.1009037 |
| LOC107965129 | uncharacterized LOC107965129 | -0.5645342 | 0.7511029 | -2.1448436 |
| LOC727074 | signal peptidase complex subunit 3 | -0.3177507 | 0.7499600 | 5.9091343 |
| LOC107964664 | uncharacterized LOC107964664 | -1.0394496 | 0.7446952 | 0.7931264 |
| LOC107965249 | uncharacterized LOC107965249 | -0.7973387 | 0.7435349 | -0.8502478 |
| LOC107965356 | uncharacterized LOC107965356 | -0.2950183 | 0.7433074 | 0.0187754 |
| LOC107964882 | uncharacterized LOC107964882 | 0.4851916 | 0.7399007 | -1.3499228 |
| LOC727338 | sarcospan-like | -0.4262889 | 0.7389061 | 0.4974328 |
| LOC726855 | vegetative cell wall protein gp1-like | -1.2730272 | 0.7380115 | 9.6882503 |
| LOC724979 | forkhead box protein A2-A-like | -0.0770731 | 0.7353410 | 1.1044621 |
| LOC726119 | inactive | 0.0534200 | 0.7345337 | 0.4056855 |
| LOC100577918 | uncharacterized LOC100577918 | -0.0096312 | 0.7339926 | 2.0232978 |
| LOC410157 | ras-related protein Rab-23 | 0.2946779 | 0.7332802 | 4.2429449 |
| LOC100576164 | uncharacterized LOC100576164 | -0.6542175 | 0.7332437 | -0.2697702 |
| LOC411696 | GDP-mannose 4,6 dehydratase | 0.0797792 | 0.7327146 | 5.0766120 |
| LOC100577373 | uncharacterized LOC100577373 | -0.1990799 | 0.7324718 | 3.3870711 |
| LOC551946 | uncharacterized LOC551946 | -0.0400772 | 0.7298866 | 2.5446637 |
| LOC107964713 | uncharacterized LOC107964713 | -1.2594413 | 0.7296583 | -1.6307556 |
| LOC107965315 | uncharacterized LOC107965315 | 0.4720875 | 0.7288284 | -1.9507707 |
| LOC100578214 | uncharacterized LOC100578214 | -0.4658855 | 0.7254422 | -2.0337469 |
| LOC107964080 | uncharacterized LOC107964080 | -1.3005192 | 0.7225982 | 1.0407651 |
| LOC107964210 | uncharacterized LOC107964210 | -0.7105614 | 0.7210512 | -0.8087919 |
| LOC724507 | RIB43A-like with coiled-coils protein 1 | 1.2895161 | 0.7183190 | 1.5648243 |
| LOC408783 | vacuolar protein sorting-associated protein 28 homolog | 0.1431904 | 0.7174490 | 5.5944569 |
| LOC725523 | stabilizer of axonemal microtubules 1 | -0.0236802 | 0.7163466 | -0.2052818 |
| LOC107965486 | uncharacterized LOC107965486 | -0.0332745 | 0.7147815 | 1.1762775 |
| LOC409281 | protein sel-1 homolog 1-like | 0.1781057 | 0.7127842 | 6.9883914 |
| LOC409024 | tropomodulin | 0.0484935 | 0.7120380 | 5.6797904 |
| LOC408914 | BAI1-associated protein 3 | 0.2356766 | 0.7110677 | 4.0359046 |
| LOC410468 | protein hairy | 0.6561998 | 0.7056002 | 6.8611472 |
| LOC413189 | NADH-cytochrome b5 reductase 2 | 0.4598088 | 0.7052431 | 7.2349081 |
| LOC410423 | uncharacterized LOC410423 | -0.1105621 | 0.7024359 | 5.4455855 |
| LOC408991 | glutaminase kidney isoform, mitochondrial | 0.0868447 | 0.6950570 | 3.8117915 |
| LOC413907 | uncharacterized LOC413907 | 0.2097903 | 0.6896805 | 3.0080507 |
| LOC410226 | activating transcription factor of chaperone | -0.0148654 | 0.6859869 | 9.8058365 |
| LOC414029 | ABC transporter A family member 1-like | 0.1809797 | 0.6853226 | 5.5719332 |
| LOC107966042 | uncharacterized LOC107966042 | 0.7019483 | 0.6820232 | -0.8449130 |
| LOC100578436 | uncharacterized LOC100578436 | -0.7472951 | 0.6816439 | 2.3681420 |
| LOC107964064 | inositol-pentakisphosphate 2-kinase-like | 0.5194725 | 0.6787511 | 0.8652733 |
| LOC411564 | nose resistant to fluoxetine protein 6-like | 0.3595935 | 0.6751259 | 4.2139766 |
| Uvop | ultraviolet-sensitive opsin | -0.1112915 | 0.6750825 | 3.5613761 |
| LOC100577596 | uncharacterized LOC100577596 | -0.4361440 | 0.6743818 | -2.1711401 |
| LOC412678 | putative tricarboxylate transport protein, mitochondrial | 0.6380721 | 0.6741625 | 7.0536423 |
| LOC727310 | putative sodium-coupled neutral amino acid transporter 7 | -0.3517222 | 0.6712327 | 3.6198404 |
| LOC100577464 | uncharacterized LOC100577464 | -0.1203062 | 0.6695387 | 1.4305730 |
| LOC100576234 | uncharacterized LOC100576234 | 0.1994309 | 0.6691470 | 3.0904625 |
| LOC727442 | AT-rich interactive domain-containing protein 3A-like | 0.0627055 | 0.6682645 | 1.1665722 |
| LOC107964763 | uncharacterized LOC107964763 | 0.0000000 | 0.6673557 | -2.6459890 |
| LOC100576690 | negative elongation factor E-like | -0.0584609 | 0.6671629 | -1.0665534 |
| LOC107964445 | uncharacterized LOC107964445 | 0.3728891 | 0.6648000 | 0.4037462 |
| LOC725067 | E3 ubiquitin-protein ligase MARCH8-like | -0.2879891 | 0.6645242 | 5.2116094 |
| LOC102654893 | uncharacterized LOC102654893 | 0.1447345 | 0.6643133 | 0.3892848 |
| LOC102654750 | uncharacterized LOC102654750 | -0.5606395 | 0.6631266 | -1.6454196 |
| LOC107965208 | uncharacterized LOC107965208 | -0.4032250 | 0.6617423 | -2.1328648 |
| LOC552663 | pyridoxal kinase | -0.5724785 | 0.6590929 | 5.8659057 |
| LOC552362 | protein lin-7 homolog C | 0.1066836 | 0.6566286 | 5.0683268 |
| LOC409936 | zinc finger and BTB domain-containing protein 34-like | 0.2948070 | 0.6548281 | 3.4081557 |
| LOC100576419 | uncharacterized LOC100576419 | 0.2366296 | 0.6532408 | -0.0786467 |
| LOC102654866 | uncharacterized LOC102654866 | -0.0676650 | 0.6524568 | 2.8161722 |
| LOC410479 | uncharacterized LOC410479 | 0.4105221 | 0.6506013 | 1.7318476 |
| LOC107964160 | uncharacterized LOC107964160 | -0.3266037 | 0.6494009 | 0.3384304 |
| LOC726912 | cell division cycle 20.4, cofactor of APC complex | 0.2347003 | 0.6485449 | -0.5448678 |
| LOC102653896 | uncharacterized LOC102653896 | -0.2435874 | 0.6484092 | -0.2339368 |
| LOC100577571 | uncharacterized LOC100577571 | 0.6303898 | 0.6462788 | -0.0149573 |
| LOC100578543 | uncharacterized LOC100578543 | -0.4385217 | 0.6436502 | -1.5566654 |
| LOC102653941 | uncharacterized LOC102653941 | 1.0180121 | 0.6375235 | 0.1948574 |
| LOC102656283 | uncharacterized LOC102656283 | -0.5180563 | 0.6354808 | 2.8023643 |
| LOC102653890 | DNA ligase 1-like | -0.4866988 | 0.6333838 | -1.4573553 |
| LOC408643 | uncharacterized LOC408643 | -0.7714222 | 0.6290992 | 6.5161509 |
| LOC551904 | glycerol-3-phosphate dehydrogenase, mitochondrial | 0.3886814 | 0.6274375 | 8.0914852 |
| LOC100578351 | uncharacterized LOC100578351 | -0.5895716 | 0.6271311 | 0.5030816 |
| LOC726485 | facilitated trehalose transporter Tret1-like | 0.1653990 | 0.6269689 | -1.0397801 |
| LOC102655718 | uncharacterized LOC102655718 | -1.0042376 | 0.6222567 | -0.9924956 |
| LOC727085 | zinc finger protein 431-like | -0.5354842 | 0.6213258 | -1.3070049 |
| LOC102654066 | uncharacterized LOC102654066 | 0.0784364 | 0.6181215 | 2.7643891 |
| LOC551558 | trichohyalin | -0.3977367 | 0.6170154 | 7.5114413 |
| LOC413354 | integrin-linked protein kinase homolog pat-4 | -0.0642348 | 0.6169732 | 5.5961946 |
| LOC409701 | uncharacterized LOC409701 | -1.5979473 | 0.6161027 | -0.9324838 |
| LOC408677 | titin | -0.0326205 | 0.6152084 | 7.7020512 |
| LOC100578777 | uncharacterized LOC100578777 | -0.5782963 | 0.6149513 | 1.1732967 |
| GstD1 | glutathione S-transferase D1 | 0.4638177 | 0.6139964 | 8.0892205 |
| LOC102656027 | uncharacterized LOC102656027 | -0.3974773 | 0.6101840 | 0.6409459 |
| LOC100577187 | protein HIRA-like | 1.0374323 | 0.6090026 | 1.6922071 |
| LOC413278 | homer protein homolog 2 | -0.0102891 | 0.6067141 | 3.2355548 |
| LOC724971 | uncharacterized LOC724971 | 0.0927178 | 0.6051613 | 7.6242444 |
| LOC102654980 | transient receptor potential channel pyrexia | 0.1588548 | 0.6040735 | -0.0574619 |
| LOC102653602 | uncharacterized LOC102653602 | -0.3528800 | 0.6031770 | -1.3080659 |
| LOC100576281 | uncharacterized LOC100576281 | -0.6406992 | 0.6028292 | 2.3789000 |
| LOC102654762 | uncharacterized LOC102654762 | -0.4200534 | 0.5972852 | -0.2911309 |
| LOC102655938 | uncharacterized LOC102655938 | -0.0149854 | 0.5922897 | -0.1236202 |
| LOC552551 | small integral membrane protein 14 | -0.6192696 | 0.5920051 | 4.9373045 |
| LOC107964406 | uncharacterized LOC107964406 | 0.2762202 | 0.5892171 | 2.6604747 |
| LOC100578672 | uncharacterized LOC100578672 | -0.6918766 | 0.5877770 | -1.1738566 |
| LOC102654581 | uncharacterized LOC102654581 | -0.8739660 | 0.5877602 | -1.5404768 |
| LOC412150 | endoplasmin | -0.2493410 | 0.5851666 | 11.0528309 |
| LOC100577670 | uncharacterized LOC100577670 | 0.2398784 | 0.5794681 | 1.8699326 |
| LOC102655710 | proline-rich extensin-like protein EPR1 | -0.3825303 | 0.5765581 | 8.2468628 |
| LOC413997 | translocator protein | -0.4564394 | 0.5753833 | 3.7151161 |
| LOC551972 | alpha-1,3/1,6-mannosyltransferase ALG2 | -0.1602067 | 0.5726855 | 4.5985085 |
| LOC102654376 | uncharacterized LOC102654376 | -0.0362674 | 0.5704695 | 0.4535412 |
| LOC727606 | ankyrin repeat domain-containing protein 50-like | 0.7923499 | 0.5685299 | -0.9941099 |
| LOC107964997 | uncharacterized LOC107964997 | -0.5993016 | 0.5684998 | 8.4104014 |
| LOC102654740 | tetratricopeptide repeat protein 25-like | -0.3178501 | 0.5682124 | -1.3641165 |
| LOC726980 | uncharacterized LOC726980 | 0.1338206 | 0.5661133 | 8.8313774 |
| LOC102655311 | uncharacterized LOC102655311 | -1.4240365 | 0.5651464 | -1.5414797 |
| Ac3 | adenylate cyclase 3 | -0.2353741 | 0.5650913 | 4.0666889 |
| LOC102654857 | uncharacterized LOC102654857 | -0.8228905 | 0.5624026 | -0.8713690 |
| LOC724227 | synaptic vesicle glycoprotein 2B-like | -1.7787238 | 0.5591988 | 1.1776216 |
| LOC107964091 | uncharacterized LOC107964091 | -0.4292478 | 0.5582008 | 0.2958091 |
| LOC410740 | RING finger protein 121 | 0.3259586 | 0.5539680 | 4.7753924 |
| LOC409498 | kinase suppressor of Ras 2 | 0.1238872 | 0.5504645 | 5.0006944 |
| LOC408835 | neuroendocrine convertase 2 | 0.4267645 | 0.5473809 | 4.7243292 |
| LOC102653640 | glutamate receptor 1-like | -0.1866008 | 0.5465040 | 2.1192554 |
| LOC100577906 | uncharacterized LOC100577906 | -0.4576435 | 0.5445833 | 1.2103861 |
| LOC107965516 | uncharacterized LOC107965516 | -1.0846440 | 0.5435883 | 0.5508782 |
| LOC408411 | transcription factor Sox-2 | 0.4093706 | 0.5400770 | 4.8341861 |
| LOC411410 | protein transport protein Sec24B | 0.0932196 | 0.5388038 | 7.3027600 |
| LOC409729 | zinc finger protein 608-like | -0.7167424 | 0.5360884 | 10.3542209 |
| LOC102655280 | uncharacterized LOC102655280 | -0.0592095 | 0.5351740 | -1.3133827 |
| LOC411495 | sperm-associated antigen 6-like | -0.3450205 | 0.5321075 | 0.5376399 |
| LOC724177 | uncharacterized LOC724177 | -0.5126959 | 0.5280746 | 4.2909254 |
| LOC107964968 | uncharacterized LOC107964968 | -1.2895245 | 0.5255981 | -0.5066497 |
| LOC100576573 | uncharacterized LOC100576573 | -0.0884262 | 0.5244929 | -0.8010734 |
| LOC102655585 | uncharacterized LOC102655585 | 0.3561507 | 0.5243166 | 0.0203695 |
| LOC409893 | protein alan shepard-like | -0.5600986 | 0.5241158 | 9.9305288 |
| LOC726679 | protein FAM98B | 0.0895193 | 0.5228423 | 5.8915904 |
| LOC102656190 | uncharacterized LOC102656190 | 0.9541762 | 0.5195482 | 5.0053356 |
| LOC552511 | GTP:AMP phosphotransferase AK3, mitochondrial | 0.1940027 | 0.5184387 | 7.7734278 |
| LOC107964909 | uncharacterized LOC107964909 | -1.8014955 | 0.5150471 | 0.0811812 |
| LOC726542 | histone H3 | 1.0428488 | 0.5148952 | 4.3369032 |
| LOC107965716 | uncharacterized LOC107965716 | -0.7261630 | 0.5141254 | -1.0176669 |
| LOC107965683 | uncharacterized LOC107965683 | -0.2578801 | 0.5140358 | -0.2182353 |
| LOC100577544 | uncharacterized LOC100577544 | 0.0040160 | 0.5139153 | 1.4829051 |
| LOC408354 | nuclear factor of activated T-cells 5 | 0.4260418 | 0.5119284 | 7.6164539 |
| LOC727465 | choline/ethanolaminephosphotransferase 1-like | 0.6955942 | 0.5110945 | 1.8933070 |
| LOC552726 | 40S ribosomal protein S18 | -0.0305888 | 0.5110163 | 10.5666582 |
| LOC107965219 | feline leukemia virus subgroup C receptor-related protein 2-like | 0.1451047 | 0.5094477 | 4.8162465 |
| LOC726468 | histone H2A-like | 0.2964036 | 0.5069562 | -0.0455309 |
| LOC107964443 | uncharacterized LOC107964443 | -0.3300655 | 0.5041611 | -1.5494827 |
| LOC102656497 | uncharacterized LOC102656497 | 0.3551152 | 0.5022418 | -0.3198683 |
| LOC552492 | dual specificity protein phosphatase 3 | 0.1716961 | 0.5014217 | 2.4882155 |
| LOC408504 | protein FAM160B1-like | -0.4893904 | 0.5001550 | 5.6755720 |
| LOC100576736 | uncharacterized LOC100576736 | 1.0252746 | 0.4988207 | 5.2896960 |
| LOC102655316 | uncharacterized LOC102655316 | 0.0704818 | 0.4970426 | 0.5969164 |
| LOC107966106 | uncharacterized LOC107966106 | -0.1011547 | 0.4964063 | 1.4136685 |
| LOC100577687 | nucleoporin-like protein 2 | 0.0786618 | 0.4962243 | 4.6222591 |
| LOC100576719 | testis-specific gene 10 protein-like | -0.2308710 | 0.4954243 | 3.0956626 |
| LOC552608 | uncharacterized LOC552608 | 0.5632433 | 0.4948332 | 1.8241666 |
| LOC409371 | intraflagellar transport protein 172 homolog | -0.0647789 | 0.4946633 | 0.0205883 |
| LOC102655959 | uncharacterized LOC102655959 | -1.2635071 | 0.4920357 | -0.0401854 |
| LOC102654056 | uncharacterized LOC102654056 | -0.5738739 | 0.4918667 | 2.3702896 |
| LOC725901 | GTP-binding protein Di-Ras2 | 0.0159556 | 0.4905598 | 2.0786884 |
| LOC107965687 | uncharacterized LOC107965687 | -0.0024151 | 0.4893023 | -0.4632989 |
| LOC552223 | dnaJ homolog subfamily B member 11 | -0.1640401 | 0.4855201 | 8.1388124 |
| LOC410393 | alkaline phosphatase-like | 0.1480096 | 0.4841850 | 1.6124100 |
| LOC102654165 | transmembrane protein 132C | -0.4701639 | 0.4840020 | 6.4393331 |
| LOC100577224 | protein PF14_0175-like | -0.3212623 | 0.4836149 | 5.1892553 |
| LOC100578420 | uncharacterized LOC100578420 | 0.7305048 | 0.4830542 | 5.0653074 |
| LOC100578084 | toll-like receptor 12 | -0.4116161 | 0.4808734 | 1.5351947 |
| LOC724554 | protein THEM6-like | -0.3753094 | 0.4778156 | 5.5950086 |
| LOC100576894 | laminin subunit beta-2-like | 0.0412159 | 0.4777084 | 1.7034479 |
| LOC100577266 | uncharacterized LOC100577266 | 0.1745477 | 0.4775254 | 0.7286487 |
| LOC100577769 | uncharacterized LOC100577769 | 0.2487287 | 0.4774969 | 3.9914293 |
| LOC102656182 | uncharacterized LOC102656182 | -0.3102306 | 0.4757555 | 0.5327850 |
| LOC102654172 | uncharacterized LOC102654172 | 0.0939612 | 0.4731824 | -0.7715778 |
| LOC552168 | palmitoleoyl-protein carboxylesterase NOTUM-like | -0.2191477 | 0.4730210 | -0.6912742 |
| LOC408722 | sodium/potassium-transporting ATPase subunit beta-2-like | -0.6036760 | 0.4697686 | 5.6836341 |
| LOC102656212 | uncharacterized LOC102656212 | 0.1074787 | 0.4693938 | 0.7399071 |
| LOC102655864 | uncharacterized LOC102655864 | -0.3471747 | 0.4687843 | 0.1815704 |
| LOC100578151 | potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 1-like | -0.0687559 | 0.4680708 | -1.4758314 |
| LOC409588 | putative thiamine transporter SLC35F3 | -0.3419471 | 0.4675314 | 2.3847511 |
| LOC727568 | dolichyl-diphosphooligosaccharide–protein glycosyltransferase subunit DAD1 | 0.0860136 | 0.4666164 | 5.4555856 |
| LOC107964305 | uncharacterized LOC107964305 | -0.4093210 | 0.4660798 | 0.1247935 |
| LOC107964830 | uncharacterized LOC107964830 | -0.6331531 | 0.4633245 | 0.3692109 |
| LOC102653863 | uncharacterized LOC102653863 | -0.4652767 | 0.4613487 | -0.1970690 |
| LOC725532 | LIM/homeobox protein Awh | -0.6228592 | 0.4602564 | -0.6160728 |
| LOC107964540 | uncharacterized LOC107964540 | 0.2315965 | 0.4561534 | -0.2854056 |
| Hbg2 | alpha-glucosidase | -0.2174207 | 0.4555708 | 11.7678899 |
| LOC411920 | ubiquitin carboxyl-terminal hydrolase 22 | -0.1167917 | 0.4551575 | 6.3907588 |
| LOC107964028 | uncharacterized LOC107964028 | -0.2785337 | 0.4531138 | 2.9471567 |
| LOC408577 | uncharacterized LOC408577 | 0.0446900 | 0.4517203 | 9.2073816 |
| LOC411141 | ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial | 0.0643765 | 0.4453422 | 5.9155248 |
| LOC100576217 | adenylate cyclase type 10-like | -0.0372273 | 0.4446605 | -0.2197361 |
| LOC100577113 | uncharacterized LOC100577113 | -0.0587194 | 0.4444951 | 3.7756092 |
| LOC408981 | activating transcription factor 3 | -0.4680950 | 0.4406313 | 6.4088751 |
| LOC102655179 | uncharacterized LOC102655179 | 0.0000000 | 0.4350508 | -2.6459890 |
| LOC724803 | membrane metallo-endopeptidase-like 1 | 0.3977683 | 0.4348519 | 0.6089864 |
| CSP3 | chemosensory protein 3 | -0.3876483 | 0.4339684 | 10.5916257 |
| LOC107966045 | uncharacterized LOC107966045 | -0.5130161 | 0.4325660 | 5.0063677 |
| LOC724917 | uncharacterized LOC724917 | -0.0541676 | 0.4321112 | 7.9106203 |
| LOC724750 | ER membrane protein complex subunit 10 | 0.0587914 | 0.4319651 | 6.1281904 |
| LOC100576644 | uncharacterized LOC100576644 | -1.6017953 | 0.4305002 | -2.5607603 |
| LOC102655071 | uncharacterized LOC102655071 | -0.1746167 | 0.4304799 | -0.2621143 |
| LOC107965726 | uncharacterized LOC107965726 | -1.0584938 | 0.4265437 | -0.7967668 |
| LOC552049 | protein DDI1 homolog 2 | 0.0428258 | 0.4246075 | 7.4685176 |
| LOC413332 | spectrin beta chain, non-erythrocytic 5 | -0.1225800 | 0.4221676 | 9.3840558 |
| LOC411189 | L-lactate dehydrogenase A-like 6A | -0.7678763 | 0.4204668 | -1.0787163 |
| LOC550738 | NEDD4 family-interacting protein 1-like | -0.0827440 | 0.4192108 | 6.0380697 |
| LOC107966102 | uncharacterized LOC107966102 | -0.4567593 | 0.4186990 | 4.0207764 |
| LOC102655526 | uncharacterized LOC102655526 | -0.9745461 | 0.4184115 | -0.1768819 |
| LOC107965046 | uncharacterized LOC107965046 | -0.1171895 | 0.4181944 | 1.2566435 |
| LOC727303 | probable methyltransferase BTM2 homolog | -0.2764965 | 0.4161765 | 3.4778283 |
| LOC409260 | short-chain dehydrogenase/reductase family 16C member 6 | 0.0394320 | 0.4157612 | 7.9553473 |
| LOC408283 | E3 ubiquitin-protein ligase RNF13-like | 0.1631400 | 0.4153173 | 5.3674799 |
| LOC107964791 | titin-like | -0.2817557 | 0.4143468 | -1.6561354 |
| CPR19 | cuticular protein 19 | -1.2781668 | 0.4123406 | 0.0155166 |
| LOC102655839 | uncharacterized LOC102655839 | 0.0201630 | 0.4119640 | 2.1111343 |
| LOC102656036 | uncharacterized LOC102656036 | 0.2172238 | 0.4118324 | -1.7289976 |
| LOC102656015 | uncharacterized LOC102656015 | 0.1973770 | 0.4077493 | -0.3063504 |
| LOC107966035 | protein unc-80 homolog | -1.5112717 | 0.4072456 | -2.2852806 |
| LOC100579007 | tetratricopeptide repeat protein 25-like | 0.1210974 | 0.4069358 | 2.7118494 |
| LOC102653875 | uncharacterized LOC102653875 | -0.0488158 | 0.4066168 | 1.4608051 |
| LOC102654307 | uncharacterized LOC102654307 | 0.5628036 | 0.4054707 | -0.5320902 |
| LOC551088 | asparagine–tRNA ligase, cytoplasmic | 0.1861942 | 0.4042811 | 7.6919437 |
| LOC107965201 | uncharacterized LOC107965201 | -0.9014130 | 0.4042697 | -0.9231568 |
| LOC551079 | uncharacterized LOC551079 | -0.1123505 | 0.4031857 | -1.3882506 |
| LOC552136 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | -0.6742611 | 0.4030845 | 1.0994789 |
| LOC100578075 | uncharacterized LOC100578075 | -0.4467269 | 0.4023620 | 1.4481342 |
| LOC102656720 | uncharacterized LOC102656720 | 0.1069695 | 0.4004446 | -0.4022812 |
| LOC410854 | seipin | 0.0359184 | 0.3995328 | 4.5302707 |
| LOC100576504 | uncharacterized LOC100576504 | -0.6364167 | 0.3994976 | 4.1047055 |
| LOC107965205 | uncharacterized LOC107965205 | 0.0355746 | 0.3990706 | 0.0230246 |
| LOC411577 | protein argonaute-2 | -0.1486703 | 0.3973926 | 6.6514624 |
| LOC725146 | very-long-chain enoyl-CoA reductase | 0.0840702 | 0.3963565 | 7.6921132 |
| LOC107964610 | uncharacterized LOC107964610 | 0.5141087 | 0.3949606 | -1.1500663 |
| LOC725615 | serine/threonine-protein kinase RIO3-like | -0.1751785 | 0.3928690 | 5.0600579 |
| LOC102656936 | uncharacterized LOC102656936 | -0.1420420 | 0.3927359 | 0.9173200 |
| LOC410866 | LIM domain only protein 3-like | -0.4738837 | 0.3904217 | -1.1636010 |
| LOC107964727 | uncharacterized LOC107964727 | -1.5283998 | 0.3894896 | -1.3532945 |
| LOC102653914 | uncharacterized LOC102653914 | 0.3446618 | 0.3882753 | -1.2631023 |
| LOC107965170 | uncharacterized LOC107965170 | -0.4302450 | 0.3874457 | 0.8213668 |
| LOC725051 | multidrug resistance-associated protein 4-like | 0.5095195 | 0.3873617 | -0.4975854 |
| LOC726638 | protein artemis | -0.1072992 | 0.3863974 | 3.4843041 |
| Dsx | doublesex | 0.2005047 | 0.3852116 | 3.8912137 |
| LOC100576118 | uncharacterized LOC100576118 | -0.1654087 | 0.3845628 | 4.8156960 |
| LOC102655554 | uncharacterized LOC102655554 | -0.5800866 | 0.3797965 | -1.2415896 |
| LOC411897 | phosphoglucomutase | 0.1334145 | 0.3780806 | 7.8215472 |
| LOC413215 | lachesin | 0.5832055 | 0.3774508 | 1.2531325 |
| LOC100578034 | uncharacterized LOC100578034 | -0.3967359 | 0.3774407 | -0.5309336 |
| LOC551988 | uncharacterized LOC551988 | -0.0995888 | 0.3770794 | 2.2719670 |
| LOC102654152 | uncharacterized LOC102654152 | 0.0785069 | 0.3770561 | -1.4820985 |
| LOC412986 | putative fatty acyl-CoA reductase | -0.1845791 | 0.3744441 | 5.3495496 |
| LOC100578349 | uncharacterized LOC100578349 | 0.0513307 | 0.3729996 | 0.3550683 |
| LOC410535 | protein lozenge-like | -0.4047122 | 0.3726882 | 0.7801177 |
| LOC725765 | uncharacterized LOC725765 | -0.9753968 | 0.3725378 | 0.2861021 |
| LOC408316 | uncharacterized LOC408316 | -0.1404278 | 0.3715517 | 6.2636633 |
| LOC409192 | probable phospholipid-transporting ATPase VD | -0.0963974 | 0.3699976 | 7.7996515 |
| LOC107964444 | uncharacterized LOC107964444 | -0.2308354 | 0.3693386 | -1.4685538 |
| LOC412057 | MAM and LDL-receptor class A domain-containing protein 1-like | 0.3890282 | 0.3681096 | 1.0147460 |
| LOC726935 | cardioacceleratory peptide receptor | 0.4196901 | 0.3681019 | 1.5420879 |
| LOC107965720 | uncharacterized LOC107965720 | -2.1585644 | 0.3675163 | -2.0249858 |
| LOC551489 | phospholipid phosphatase 5 | -0.0819108 | 0.3659198 | 4.9427661 |
| LOC107965777 | uncharacterized LOC107965777 | -0.0786036 | 0.3646557 | 1.7898200 |
| LOC411746 | uncharacterized LOC411746 | -0.1179738 | 0.3646271 | 5.6638668 |
| LOC100576936 | uncharacterized LOC100576936 | -0.2516198 | 0.3645240 | -0.0484660 |
| LOC410091 | ras guanine nucleotide exchange factor P | 0.0796474 | 0.3628424 | 4.8264498 |
| LOC107964822 | uncharacterized LOC107964822 | -0.4146959 | 0.3624783 | 1.2051708 |
| LOC107963989 | uncharacterized LOC107963989 | 0.0176696 | 0.3618018 | 0.0415990 |
| LOC412924 | protein ROP | 0.1272193 | 0.3600597 | 5.6226301 |
| LOC100578978 | uncharacterized LOC100578978 | -0.0211946 | 0.3580004 | -1.8740893 |
| LOC107964159 | uncharacterized LOC107964159 | -0.2675804 | 0.3572545 | -2.4024930 |
| LOC107965176 | uncharacterized LOC107965176 | 0.4789804 | 0.3564761 | 1.6400749 |
| LOC100577756 | zinc finger protein 678-like | -0.2359268 | 0.3543905 | 1.1306417 |
| LOC725036 | U7 snRNA-associated Sm-like protein LSm11 | 0.3145857 | 0.3539223 | 2.8195702 |
| LOC100578332 | uncharacterized LOC100578332 | -0.0438454 | 0.3537308 | 4.0756936 |
| LOC727555 | NF-kappa-B inhibitor alpha-like | 0.2449017 | 0.3536614 | 0.3381611 |
| LOC102653664 | uncharacterized LOC102653664 | -0.3180707 | 0.3527897 | 2.4599212 |
| LOC727287 | transcription factor Sox-7-like | -0.0945316 | 0.3490795 | -0.7654238 |
| LOC409240 | HMG box-containing protein 4 | -0.2492624 | 0.3465135 | 5.2383136 |
| LOC409261 | glycerol kinase-like | -0.0802819 | 0.3449887 | 6.9074352 |
| LOC408951 | 14-3-3 protein epsilon | -0.1804206 | 0.3448657 | 9.8731324 |
| LOC102656042 | uncharacterized LOC102656042 | -0.9978773 | 0.3445258 | 0.7158066 |
| LOC102653642 | uncharacterized LOC102653642 | 0.2102918 | 0.3429327 | -1.2798976 |
| LOC408525 | neuronal acetylcholine receptor subunit alpha-10 | -0.8829214 | 0.3428875 | -0.9756435 |
| LOC100578101 | uncharacterized LOC100578101 | -1.0970128 | 0.3427843 | 5.5254733 |
| LOC726495 | protein D2-like | -0.1926341 | 0.3403548 | 7.1083645 |
| LOC552306 | male-enhanced antigen 1 | 0.1775582 | 0.3364367 | 4.8948690 |
| LOC102653857 | uncharacterized LOC102653857 | 0.7972309 | 0.3355147 | 0.9741262 |
| LOC724287 | rhomboid-related protein 3-like | -0.2317174 | 0.3354925 | -0.8441699 |
| LOC100577798 | uncharacterized LOC100577798 | -0.2573244 | 0.3350988 | -0.4185576 |
| LOC100576172 | uncharacterized LOC100576172 | -0.2023758 | 0.3331362 | -0.2140956 |
| LOC102655268 | WD repeat-containing protein 63-like | -0.0131639 | 0.3328591 | 1.8834365 |
| LOC107964725 | uncharacterized LOC107964725 | -0.8058273 | 0.3327428 | -1.2081329 |
| LOC411200 | tryptophan 5-hydroxylase 1 | 0.0997314 | 0.3323650 | 0.5408357 |
| LOC102653996 | uncharacterized LOC102653996 | -0.8196880 | 0.3323056 | 0.5551213 |
| LOC102654623 | uncharacterized LOC102654623 | -0.6545680 | 0.3318610 | -0.3285882 |
| LOC107964065 | uncharacterized LOC107964065 | 0.2989278 | 0.3314667 | 0.9835900 |
| LOC107965225 | ribulose-phosphate 3-epimerase-like | -0.0390410 | 0.3303909 | 6.6046017 |
| LOC102654016 | uncharacterized LOC102654016 | 0.7965392 | 0.3303690 | 1.1877678 |
| LOC107964428 | uncharacterized LOC107964428 | -0.6198334 | 0.3294973 | 1.1020947 |
| LOC410755 | tyramine receptor-like | 0.5897215 | 0.3286500 | -0.3765952 |
| LOC724156 | transcription factor Sp8-like | -0.6512355 | 0.3269187 | -0.0404480 |
| LOC100576732 | uncharacterized LOC100576732 | -0.0716426 | 0.3262012 | -1.1550485 |
| LOC102655029 | uncharacterized LOC102655029 | -0.5991504 | 0.3258428 | -0.4928086 |
| LOC408558 | tektin-4 | -0.0682864 | 0.3250888 | 0.8110241 |
| LOC107965039 | uncharacterized LOC107965039 | -0.1689449 | 0.3244746 | 1.6413745 |
| LOC410913 | sodium/potassium-transporting ATPase subunit alpha-like | 0.2679100 | 0.3194412 | 0.9893394 |
| LOC414037 | protein Wnt-5b | 0.3373139 | 0.3192865 | 0.9499917 |
| LOC410948 | aromatic-L-amino-acid decarboxylase | 0.4734398 | 0.3190593 | 0.2396183 |
| LOC102653678 | uncharacterized LOC102653678 | -0.6611781 | 0.3185786 | 0.9449063 |
| LOC409966 | dexamethasone-induced Ras-related protein 1 | 0.1582875 | 0.3152289 | 3.0572068 |
| LOC107964452 | uncharacterized LOC107964452 | -1.0430505 | 0.3150625 | -1.0237421 |
| LOC409861 | nucleoside diphosphate kinase | -0.0703993 | 0.3146911 | 9.1611529 |
| LOC102656911 | uncharacterized LOC102656911 | -0.0363358 | 0.3141902 | 0.2008447 |
| LOC107964592 | uncharacterized LOC107964592 | 0.4171101 | 0.3110922 | -1.3854092 |
| LOC100576985 | uncharacterized LOC100576985 | 0.7983800 | 0.3084452 | 0.0087167 |
| LOC408703 | uncharacterized LOC408703 | 0.0486590 | 0.3073883 | -1.3942449 |
| LOC100578529 | zinc finger protein 701-like | -0.4026122 | 0.3062023 | 6.7410923 |
| LOC412815 | fatty acid synthase | 0.3738843 | 0.3054000 | 11.6939947 |
| LOC102655842 | uncharacterized LOC102655842 | 0.1962725 | 0.3028526 | -0.7608585 |
| LOC100578854 | uncharacterized LOC100578854 | -0.2196440 | 0.3024987 | 0.1841775 |
| LOC107964981 | uncharacterized LOC107964981 | -0.5499166 | 0.3016868 | -1.2316000 |
| LOC100578015 | centrosomal protein of 104 kDa | -0.3365267 | 0.3012887 | 1.6157339 |
| LOC100577026 | mitochondrial amidoxime-reducing component 1-like | 0.7111536 | 0.3012141 | 7.6531906 |
| LOC550767 | ribose 5-phosphate isomerase A | 0.0173897 | 0.3004703 | 4.6152340 |
| LOC725942 | glutathione S-transferase 1 | -0.6533654 | 0.2975822 | 4.3749776 |
| LOC107964605 | uncharacterized LOC107964605 | -1.1796091 | 0.2964578 | -2.5035413 |
| LOC409581 | F-actin-capping protein subunit beta | 0.0159142 | 0.2963034 | 6.5917740 |
| LOC724259 | trypsin-7 | -0.4606507 | 0.2949736 | -0.6757678 |
| LOC726471 | protein msta-like | 0.8240279 | 0.2928272 | -1.2915340 |
| LOC409096 | uncharacterized LOC409096 | 0.1285221 | 0.2917919 | 0.1217608 |
| LOC409157 | succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial | 0.0101318 | 0.2909767 | 6.9646363 |
| LOC102653684 | uncharacterized LOC102653684 | -0.3697062 | 0.2898758 | -0.6711067 |
| LOC102655622 | facilitated trehalose transporter Tret1-like | 0.1735733 | 0.2895359 | -1.1140911 |
| LOC725351 | aldose 1-epimerase-like | -0.3354252 | 0.2892601 | 1.0770629 |
| LOC724847 | uncharacterized LOC724847 | -0.1900357 | 0.2885811 | 1.6091748 |
| LOC102656553 | uncharacterized LOC102656553 | -0.4549301 | 0.2877222 | -1.2516091 |
| LOC100577384 | uncharacterized LOC100577384 | -0.5355464 | 0.2876732 | -1.5515975 |
| LOC100576963 | zinc finger and BTB domain-containing protein 14-like | 0.6380835 | 0.2873393 | 2.9100402 |
| LOC412548 | 2-oxoisovalerate dehydrogenase subunit alpha, mitochondrial | -0.3778278 | 0.2852875 | 5.5562597 |
| LOC107965204 | uncharacterized LOC107965204 | -0.5220589 | 0.2847018 | 1.8728072 |
| LOC413462 | cyclin-G-associated kinase | 0.0780643 | 0.2846095 | 5.9954073 |
| LOC102655521 | G-protein coupled receptor 54 | 0.0614427 | 0.2820749 | -1.1698749 |
| LOC107964071 | uncharacterized LOC107964071 | -0.8825248 | 0.2815506 | -0.4403040 |
| LOC100576811 | harmonin-like | -0.0434420 | 0.2815416 | -1.5795128 |
| LOC724433 | kell blood group glycoprotein homolog | 0.8651966 | 0.2813813 | 1.3150465 |
| LOC726680 | netrin-1-like | 0.0821715 | 0.2811993 | -1.2017464 |
| LOC100578839 | uncharacterized LOC100578839 | 0.2062583 | 0.2811769 | 3.1110210 |
| LOC100576307 | oocyte zinc finger protein XlCOF8.4-like | 1.0155577 | 0.2803388 | 3.4430333 |
| LOC102655806 | uncharacterized LOC102655806 | -0.3118230 | 0.2788070 | -0.7397090 |
| LOC408876 | MOB kinase activator-like 2 | 0.1611064 | 0.2783309 | 5.6022173 |
| LOC551656 | DNA translocase FtsK-like | -0.7041582 | 0.2775625 | -1.0414583 |
| LOC100577410 | uncharacterized LOC100577410 | -0.0106377 | 0.2773762 | -0.2746195 |
| LOC102654295 | uncharacterized LOC102654295 | -0.6809512 | 0.2761601 | -0.8736589 |
| LOC107965335 | uncharacterized LOC107965335 | -0.6257403 | 0.2758057 | -1.0536386 |
| LOC102656009 | succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial-like | -0.0993932 | 0.2754773 | 7.1151700 |
| LOC102656814 | uncharacterized LOC102656814 | -0.5577535 | 0.2754195 | 0.8682427 |
| LOC724460 | uncharacterized LOC724460 | -0.5418939 | 0.2743083 | 4.5538147 |
| LOC107964269 | uncharacterized LOC107964269 | -0.5999463 | 0.2737638 | 1.3424657 |
| LOC100577411 | uncharacterized LOC100577411 | -1.4862459 | 0.2729855 | -1.6815066 |
| Slc35b1 | solute carrier family 35, member B1 | -0.0593193 | 0.2676930 | 5.7611294 |
| LOC102656671 | uncharacterized LOC102656671 | 0.2593297 | 0.2676369 | 1.7798477 |
| LOC107964852 | uncharacterized LOC107964852 | 0.0780558 | 0.2665205 | -0.5307702 |
| LOC726456 | unconventional myosin-Va | 0.0393320 | 0.2664633 | 6.2225247 |
| LOC107964306 | uncharacterized LOC107964306 | -0.6117980 | 0.2652967 | -1.1466302 |
| LOC107964264 | uncharacterized LOC107964264 | 1.8182525 | 0.2647926 | -1.9121880 |
| LOC100577043 | uncharacterized LOC100577043 | -0.3352005 | 0.2642177 | 1.2701265 |
| LOC102655976 | uncharacterized LOC102655976 | 0.2263132 | 0.2632990 | -0.5284859 |
| LOC552151 | dnaJ homolog subfamily C member 1-like | -0.0780370 | 0.2630587 | 6.4386892 |
| LOC102655354 | uncharacterized LOC102655354 | -0.7942575 | 0.2629008 | -0.2269023 |
| LOC100578475 | uncharacterized LOC100578475 | 0.9097519 | 0.2626359 | -1.1213763 |
| LOC725083 | clusterin-associated protein 1-like | -0.0215383 | 0.2592521 | 2.5673452 |
| LOC107964773 | uncharacterized LOC107964773 | 0.0306030 | 0.2587111 | -0.7274705 |
| LOC100577082 | uncharacterized LOC100577082 | -0.3717020 | 0.2561139 | 3.2631353 |
| LOC102655611 | uncharacterized LOC102655611 | -0.1254131 | 0.2529512 | -0.3454699 |
| LOC100576667 | E3 ubiquitin-protein ligase synoviolin A | -0.2025759 | 0.2511176 | 6.6488511 |
| LOC102654044 | uncharacterized LOC102654044 | 0.4766860 | 0.2506185 | -2.0906357 |
| LOC550686 | ATP-citrate synthase | 0.1575654 | 0.2480923 | 10.9356272 |
| Burs | bursicon subunit alpha | -0.0625144 | 0.2452627 | 0.2348500 |
| LOC552068 | protein phosphatase 1L | 0.2083508 | 0.2447985 | 5.6069468 |
| LOC724902 | NGFI-A-binding protein homolog | 0.0459950 | 0.2443580 | 1.6598803 |
| LOC552598 | uncharacterized LOC552598 | 0.0231997 | 0.2434366 | 3.4308462 |
| LOC107965494 | uncharacterized LOC107965494 | -0.5250679 | 0.2427885 | -0.6223877 |
| LOC102654413 | uncharacterized LOC102654413 | -0.0301280 | 0.2402375 | -0.8383647 |
| LOC412541 | long-chain-fatty-acid–CoA ligase 6 | 0.0248925 | 0.2388770 | 4.3412479 |
| LOC107966108 | uncharacterized LOC107966108 | 0.0002351 | 0.2340137 | -1.6428773 |
| LOC102654037 | uncharacterized LOC102654037 | 0.6020578 | 0.2329942 | -1.0252243 |
| LOC102654678 | uncharacterized LOC102654678 | -0.4004000 | 0.2320513 | -1.9106981 |
| LOC727598 | probable cytochrome P450 6a13 | -1.3945745 | 0.2310666 | 3.4341004 |
| LOC100578798 | uncharacterized LOC100578798 | 0.0070164 | 0.2308612 | -1.2849957 |
| LOC107965956 | barH-like 1 homeobox protein | -0.7278179 | 0.2285550 | -0.9493398 |
| LOC410483 | B9 domain-containing protein 1-like | -0.4455806 | 0.2280215 | -2.2143583 |
| LOC107965440 | uncharacterized LOC107965440 | -0.3607568 | 0.2278129 | 1.2712804 |
| LOC102653841 | uncharacterized LOC102653841 | -1.0925974 | 0.2265828 | -0.1485444 |
| LOC409137 | MAP kinase-activating death domain protein | -0.3889580 | 0.2253856 | 3.0593812 |
| LOC413379 | yellow-g | -0.5327337 | 0.2238158 | -0.8678128 |
| LOC107965026 | uncharacterized LOC107965026 | -1.0458633 | 0.2230684 | -1.8763276 |
| LOC102654972 | uncharacterized LOC102654972 | -0.8410843 | 0.2223462 | -1.7552892 |
| LOC107964297 | uncharacterized LOC107964297 | -0.3663236 | 0.2217921 | 0.0127930 |
| LOC725365 | probable phosphatase phospho2 | 0.0606064 | 0.2204016 | 4.4831981 |
| LOC102654163 | uncharacterized LOC102654163 | -0.5004882 | 0.2203073 | -0.0896683 |
| LOC107965863 | uncharacterized LOC107965863 | -0.1609796 | 0.2201593 | -2.1675573 |
| LOC102655153 | facilitated trehalose transporter Tret1-like | -0.3828982 | 0.2198576 | -1.2273525 |
| LOC102654734 | uncharacterized LOC102654734 | -0.3340701 | 0.2188831 | 0.5747947 |
| LOC413670 | uncharacterized F-box/LRR-repeat protein C02F5.7 | 0.2978577 | 0.2187973 | 3.1257048 |
| LOC551924 | mucin-1 | -0.1248728 | 0.2183280 | 5.7834551 |
| cad | homeotic protein caudal | 0.7379545 | 0.2181825 | 1.3453724 |
| LOC724430 | putative sodium/calcium exchanger 7 | -0.0239478 | 0.2180931 | -0.9406746 |
| LOC102653672 | uncharacterized LOC102653672 | 0.0091808 | 0.2155035 | 0.2590472 |
| LOC100576179 | cilia- and flagella-associated protein 43-like | 0.2161441 | 0.2151438 | 0.5697978 |
| LOC102656131 | biogenesis of lysosome-related organelles complex 1 subunit 2 | -0.0319782 | 0.2109037 | 3.4488947 |
| LOC552343 | electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial | 0.4674059 | 0.2095337 | 8.5243271 |
| LOC410417 | receptor-type tyrosine-protein phosphatase kappa-like | 0.1626213 | 0.2089683 | 2.6385050 |
| LOC102654766 | leucine-rich repeat-containing protein 40-like | -0.1719656 | 0.2072093 | -0.6980414 |
| LOC408467 | chloride channel protein 2 | -0.1126560 | 0.2066615 | 6.1942002 |
| LOC100577781 | uncharacterized LOC100577781 | 0.0377765 | 0.2063579 | 3.9988803 |
| LOC102655409 | uncharacterized LOC102655409 | -0.5492842 | 0.2057572 | 1.7451889 |
| LOC100577142 | uncharacterized LOC100577142 | -0.9199547 | 0.2054215 | 4.2340618 |
| LOC102654154 | uncharacterized LOC102654154 | 1.5254457 | 0.2054052 | -0.8766705 |
| LOC551350 | myotrophin-like | -0.1049051 | 0.2049351 | 7.1643064 |
| LOC102655843 | uncharacterized LOC102655843 | 0.1247160 | 0.2039910 | -0.5714576 |
| LOC107964723 | uncharacterized LOC107964723 | -1.0688762 | 0.2032636 | -1.5383075 |
| LOC102654605 | uncharacterized LOC102654605 | -0.0826988 | 0.2023562 | 2.1148794 |
| LOC724698 | uncharacterized LOC724698 | -0.1442055 | 0.2009201 | 0.9638543 |
| LOC107964010 | uncharacterized LOC107964010 | 0.0886748 | 0.2008840 | -0.3378120 |
| C1q-VP | C1q-like venom protein | 0.1059895 | 0.1993576 | 5.0996072 |
| LOC102654319 | uncharacterized LOC102654319 | 0.0974370 | 0.1992386 | -1.7613696 |
| LOC102656593 | uncharacterized LOC102656593 | 0.0807944 | 0.1982577 | 0.1387260 |
| LOC100577213 | tumor necrosis factor receptor superfamily member 4-like | -0.0443706 | 0.1982170 | 1.1504426 |
| LOC726677 | uncharacterized LOC726677 | 0.3874184 | 0.1965864 | 0.8614625 |
| LOC551061 | multidrug resistance-associated protein 4-like | 0.2130248 | 0.1965016 | 7.1211027 |
| LOC410169 | twinfilin | 0.0094006 | 0.1941169 | 5.8209250 |
| LOC107965727 | uncharacterized LOC107965727 | 0.1339981 | 0.1938005 | -1.0960397 |
| LOC102656653 | uncharacterized LOC102656653 | -0.7222128 | 0.1937091 | -1.0247409 |
| LOC107964972 | uncharacterized LOC107964972 | -0.4070397 | 0.1936837 | -0.3309454 |
| LOC107965507 | uncharacterized LOC107965507 | -0.1072359 | 0.1928034 | -0.2337326 |
| LOC102653583 | uncharacterized LOC102653583 | -1.0440759 | 0.1926989 | 0.0348180 |
| LOC102655675 | uncharacterized LOC102655675 | -1.1090005 | 0.1919383 | -0.2002892 |
| LOC413898 | protein YIPF6 | -0.4161810 | 0.1917018 | 4.6970363 |
| LOC107964082 | uncharacterized LOC107964082 | -0.6974743 | 0.1916090 | -1.3129947 |
| LOC107965753 | uncharacterized LOC107965753 | -0.3904153 | 0.1907569 | 0.2907168 |
| LOC100577437 | uncharacterized LOC100577437 | 0.0132947 | 0.1905237 | -0.6389298 |
| LOC107964471 | uncharacterized LOC107964471 | -1.0989748 | 0.1897802 | -1.9569925 |
| LOC412674 | phosphoserine phosphatase | -0.2599656 | 0.1893678 | 3.7102739 |
| Stg-1 | stargazin related protein STG-1 | -0.5285475 | 0.1890991 | -0.2679085 |
| LOC100577669 | uncharacterized LOC100577669 | 0.7152549 | 0.1875450 | 3.9652711 |
| LOC102655468 | uncharacterized LOC102655468 | 0.0025201 | 0.1874374 | -1.3373951 |
| LOC102654745 | uncharacterized LOC102654745 | -0.3998265 | 0.1856386 | -1.0369535 |
| LOC107965590 | uncharacterized LOC107965590 | 0.0814034 | 0.1853160 | 1.2582553 |
| LOC408985 | pteropsin | -0.5440929 | 0.1852167 | -1.3364122 |
| LOC102656903 | uncharacterized LOC102656903 | -0.6561262 | 0.1842570 | -0.8724559 |
| LOC102654289 | uncharacterized LOC102654289 | 0.6143514 | 0.1837265 | 1.4264872 |
| LOC107965667 | uncharacterized LOC107965667 | -0.9128098 | 0.1831340 | -1.5491379 |
| LOC100578680 | uncharacterized LOC100578680 | -0.5540177 | 0.1826182 | 7.0512182 |
| LOC726277 | anaphase-promoting complex subunit CDC26-like | 0.3366751 | 0.1824645 | 3.3309403 |
| LOC100576549 | uncharacterized LOC100576549 | -0.2326480 | 0.1822853 | 2.3673098 |
| LOC726069 | atrial natriuretic peptide receptor 1-like | -0.4079975 | 0.1818170 | 5.7717485 |
| LOC102655645 | uncharacterized LOC102655645 | 0.0494355 | 0.1817863 | -0.7910424 |
| LOC107966084 | uncharacterized LOC107966084 | -1.3064419 | 0.1815679 | -1.5291451 |
| LOC727268 | protein unc-80 homolog | -1.0742014 | 0.1810808 | -1.7503946 |
| LOC107965206 | uncharacterized LOC107965206 | 0.2822531 | 0.1803544 | 1.0513894 |
| LOC410130 | PRA1 family protein 3 | -0.3603160 | 0.1801760 | 5.9842571 |
| LOC100577913 | protein roadkill-like | 0.3465811 | 0.1800679 | 3.0321638 |
| LOC107964553 | uncharacterized LOC107964553 | -0.1737556 | 0.1799989 | -1.4962341 |
| Rps14 | ribosomal protein S14 | 0.0891285 | 0.1779288 | 9.9445413 |
| LOC107964051 | uncharacterized LOC107964051 | -1.1518358 | 0.1772536 | -1.4165760 |
| LOC107965906 | probable serine/threonine-protein kinase DDB_G0282963 | 0.4184013 | 0.1766829 | 0.3515382 |
| Dop3 | D2-like dopamine receptor | -0.0442678 | 0.1766296 | -0.3963508 |
| LOC107966086 | uncharacterized LOC107966086 | -0.5992657 | 0.1765809 | 0.3364947 |
| LOC100576626 | uncharacterized LOC100576626 | -0.7531056 | 0.1759431 | 1.3273552 |
| LOC107964035 | uncharacterized LOC107964035 | -0.1492026 | 0.1757999 | 5.1153298 |
| LOC552584 | DNA topoisomerase 3-beta-1-like | -0.1429574 | 0.1752668 | 2.5238888 |
| LOC107964726 | uncharacterized LOC107964726 | -1.7737364 | 0.1742795 | -2.4296514 |
| LOC551409 | uncharacterized LOC551409 | -0.1645009 | 0.1741325 | 6.5279336 |
| LOC408310 | caveolin-3-like | -0.1091719 | 0.1740296 | 0.1554157 |
| LOC100577574 | leucine-rich repeat-containing protein 4C-like | -0.1169819 | 0.1736990 | 3.3176515 |
| LOC100576410 | uncharacterized LOC100576410 | 0.2026577 | 0.1710902 | -2.4037241 |
| LOC409439 | protein transport protein Sec24C | -0.0378906 | 0.1701483 | 8.7296085 |
| LOC107964085 | uncharacterized LOC107964085 | -1.1366012 | 0.1700439 | -1.1354548 |
| LOC107965580 | uncharacterized LOC107965580 | -0.4172476 | 0.1693230 | -1.0406813 |
| LOC107964582 | uncharacterized LOC107964582 | -0.7347577 | 0.1690734 | -1.7517057 |
| LOC107964846 | uncharacterized LOC107964846 | 0.1349103 | 0.1682111 | -1.8280046 |
| LOC102654210 | uncharacterized LOC102654210 | 0.9435709 | 0.1677862 | -0.9919233 |
| LOC409725 | target of rapamycin complex subunit lst8 | -0.2219730 | 0.1676584 | 4.8530287 |
| LOC726853 | protein scarlet | -0.0901869 | 0.1674288 | -0.7509043 |
| LOC102656466 | uncharacterized LOC102656466 | 0.1743583 | 0.1672206 | 5.0893430 |
| LOC408315 | ceramide kinase | 0.3157784 | 0.1666081 | 5.4477335 |
| LOC107964508 | uncharacterized LOC107964508 | -0.2531185 | 0.1661743 | -0.9652122 |
| LOC102654625 | uncharacterized LOC102654625 | -0.1621855 | 0.1652158 | 3.5966863 |
| LOC100576126 | uncharacterized LOC100576126 | -0.2211999 | 0.1647179 | -2.3067489 |
| LOC107965446 | uncharacterized LOC107965446 | -0.5930025 | 0.1634067 | 1.3276510 |
| LOC107965156 | uncharacterized LOC107965156 | -0.3062908 | 0.1632897 | -1.3849297 |
| LOC107964836 | uncharacterized LOC107964836 | -0.0013807 | 0.1627021 | 1.3156541 |
| LOC102655824 | uncharacterized LOC102655824 | -0.1708690 | 0.1626367 | -0.2313247 |
| LOC409968 | protein transport protein Sec31A | 0.1005770 | 0.1624000 | 7.4201229 |
| LOC102655131 | fez family zinc finger protein 1-like | 0.8203742 | 0.1622568 | -0.6739209 |
| LOC107965050 | uncharacterized LOC107965050 | -0.1852817 | 0.1619321 | -0.4489546 |
| LOC100576513 | uncharacterized LOC100576513 | -0.0801275 | 0.1603545 | -2.0703087 |
| LOC727485 | cytohesin-1-like | 0.3035926 | 0.1600668 | 2.2188931 |
| LOC551280 | uncharacterized LOC551280 | -0.3371426 | 0.1583604 | 4.7885523 |
| LOC102654313 | uncharacterized LOC102654313 | 0.7325875 | 0.1576248 | -0.4808270 |
| LOC408592 | acyl-coenzyme A:6-aminopenicillanic-acid-acyltransferase 40 kDa form | 0.0533616 | 0.1565784 | 4.3812587 |
| LOC724747 | otoferlin-like | 0.2566423 | 0.1565560 | 4.6511686 |
| LOC107964612 | uncharacterized LOC107964612 | 0.3433624 | 0.1558566 | -0.2992104 |
| LOC550659 | adiponectin receptor protein | 0.3117929 | 0.1552943 | 5.9266991 |
| LOC100577069 | hairy/enhancer-of-split related with YRPW motif protein | -0.7780640 | 0.1549695 | -0.8090375 |
| LOC727313 | uncharacterized LOC727313 | -0.2585302 | 0.1547925 | 0.1973165 |
| LOC725594 | PDZ and LIM domain protein Zasp-like | -0.2937641 | 0.1543642 | 4.6243686 |
| LOC410662 | lachesin-like | 0.2843003 | 0.1541899 | -0.1405845 |
| LOC102655768 | uncharacterized LOC102655768 | -1.0983302 | 0.1531135 | -1.1585847 |
| LOC552667 | protein charybde-like | 0.3295438 | 0.1527454 | 3.8943989 |
| LOC102655208 | uncharacterized LOC102655208 | -0.0343680 | 0.1521213 | -2.5887718 |
| LOC410747 | glucose dehydrogenase [FAD, quinone] | 1.2239557 | 0.1520633 | 5.0601974 |
| LOC724885 | zinc finger protein 395 | 0.1085566 | 0.1491056 | 6.3647351 |
| LOC107964086 | uncharacterized LOC107964086 | -0.2325479 | 0.1485212 | -0.7213242 |
| LOC412670 | probable phosphoserine aminotransferase | 0.0811207 | 0.1483423 | 7.8008579 |
| LOC727649 | uncharacterized LOC727649 | -0.0836276 | 0.1471006 | 2.7041637 |
| LOC724369 | 40S ribosomal protein S25 | -0.1722948 | 0.1455525 | 10.5998798 |
| LOC726669 | uncharacterized LOC726669 | 0.0027953 | 0.1451894 | 4.7790674 |
| Metrn | meteorin | 0.0242599 | 0.1444203 | 4.7799011 |
| LOC107964006 | uncharacterized LOC107964006 | -0.0235997 | 0.1439115 | -0.1326879 |
| LOC102655275 | uncharacterized LOC102655275 | -0.0134929 | 0.1436113 | -0.8090650 |
| LOC726890 | carbonic anhydrase 2-like | 0.0625070 | 0.1432675 | 0.8380271 |
| LOC107964171 | uncharacterized LOC107964171 | 0.1361512 | 0.1424592 | -0.8965376 |
| LOC102654709 | uncharacterized LOC102654709 | -1.2394459 | 0.1422197 | -2.5885930 |
| LOC413106 | uncharacterized LOC413106 | 0.3573190 | 0.1421882 | 3.5375948 |
| LOC107964181 | uncharacterized LOC107964181 | -0.3886600 | 0.1421020 | 1.0764103 |
| LOC102656627 | uncharacterized LOC102656627 | 0.3239253 | 0.1419355 | -0.3933678 |
| LOC724745 | transmembrane and TPR repeat-containing protein 1-like | 0.0096494 | 0.1416126 | -2.4733839 |
| LOC107965355 | uncharacterized LOC107965355 | 2.4862714 | 0.1409415 | 0.4173294 |
| LOC727622 | probable aspartate aminotransferase, cytoplasmic | 0.1719925 | 0.1408589 | 8.9275094 |
| LOC552346 | coatomer subunit delta | 0.0504397 | 0.1406255 | 7.1971489 |
| LOC552395 | glucose dehydrogenase [FAD, quinone] | 0.6263513 | 0.1406042 | 0.3463921 |
| LOC552367 | neuronal PAS domain-containing protein 4 | 0.0206102 | 0.1386970 | 0.5499582 |
| LOC100577013 | uncharacterized LOC100577013 | -0.6643783 | 0.1386547 | -1.2512058 |
| LOC102656496 | uncharacterized LOC102656496 | 0.1240245 | 0.1383859 | -1.9164656 |
| LOC107965712 | uncharacterized LOC107965712 | 0.8568963 | 0.1372539 | -2.3027425 |
| LOC100576258 | uncharacterized LOC100576258 | -0.0733935 | 0.1369820 | 3.3179654 |
| LOC409174 | mannosyl-oligosaccharide alpha-1,2-mannosidase IA | -0.0493576 | 0.1367558 | 8.6551430 |
| LOC100577908 | uncharacterized LOC100577908 | -0.5001998 | 0.1363846 | -2.0201962 |
| LOC102655014 | uncharacterized LOC102655014 | -0.1889461 | 0.1357626 | -1.9722202 |
| LOC411457 | galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase P | 0.7211184 | 0.1352790 | 4.8749725 |
| LOC727511 | cysteine-rich protein 2-binding protein-like | -0.3957202 | 0.1347251 | 0.8912066 |
| LOC107964562 | uncharacterized LOC107964562 | 0.0569355 | 0.1343952 | 0.4200780 |
| LOC107964211 | uncharacterized LOC107964211 | -0.0069676 | 0.1339513 | 0.7265367 |
| Ip3k | inositol 1,4,5-triphosphate kinase | -0.0321139 | 0.1337666 | 6.1369528 |
| LOC412160 | programmed cell death protein 10 | -0.2834650 | 0.1336954 | 3.7372417 |
| LOC102656145 | uncharacterized LOC102656145 | 0.3835526 | 0.1332466 | 0.5544183 |
| LOC551443 | uncharacterized LOC551443 | -0.0930778 | 0.1325164 | 1.8472229 |
| LOC727241 | uncharacterized LOC727241 | -0.1069440 | 0.1324121 | 3.2089268 |
| LOC551778 | uncharacterized LOC551778 | -0.8353549 | 0.1323776 | -0.6938626 |
| LOC413749 | ovalbumin-related protein X | 0.1348673 | 0.1316984 | 7.4957873 |
| LOC100577848 | uncharacterized LOC100577848 | -0.6769304 | 0.1312259 | -0.4017834 |
| LOC551931 | ethanolamine-phosphate cytidylyltransferase | 0.1206225 | 0.1310400 | 5.6607651 |
| LOC102653746 | uncharacterized LOC102653746 | -0.0593027 | 0.1309881 | -1.1622241 |
| LOC100579059 | uncharacterized LOC100579059 | -0.3631631 | 0.1309175 | 3.1762715 |
| LOC412768 | protein takeout-like | -0.7303423 | 0.1306529 | 6.8626959 |
| LOC409362 | fasciculation and elongation protein zeta-2 | 0.1569733 | 0.1294649 | 6.1191441 |
| LOC107964253 | uncharacterized LOC107964253 | -0.4206052 | 0.1294341 | -1.1876664 |
| LOC102656489 | uncharacterized LOC102656489 | 0.0935121 | 0.1277234 | -1.8111536 |
| LOC102655137 | uncharacterized LOC102655137 | -1.1017444 | 0.1277170 | -1.6230290 |
| LOC102656394 | uncharacterized LOC102656394 | -0.5749802 | 0.1272873 | -1.7100966 |
| LOC102653811 | uncharacterized LOC102653811 | -0.3460342 | 0.1261364 | -2.1893952 |
| LOC726415 | LIM/homeobox protein Lhx9-like | -0.7377559 | 0.1256611 | 0.1569952 |
| LOC409781 | uncharacterized LOC409781 | -0.1682043 | 0.1254247 | 1.1759919 |
| LOC107965052 | uncharacterized LOC107965052 | -0.4166622 | 0.1253943 | -2.5028433 |
| LOC409956 | uncharacterized LOC409956 | -0.2993427 | 0.1240945 | 6.8765181 |
| LOC102653665 | uncharacterized LOC102653665 | -0.0550049 | 0.1238893 | -1.9469346 |
| LOC102656519 | uncharacterized LOC102656519 | 0.0488813 | 0.1238802 | -2.1672498 |
| LOC107964607 | uncharacterized LOC107964607 | -0.0603147 | 0.1236644 | -0.8526576 |
| LOC413994 | calcium-activated potassium channel slowpoke | -0.7039486 | 0.1227102 | 3.3748191 |
| LOC102656125 | uncharacterized LOC102656125 | -0.0874553 | 0.1225356 | -0.6906285 |
| LOC410429 | mannose-P-dolichol utilization defect 1 protein homolog | -0.0930774 | 0.1220400 | 5.8116038 |
| LOC551248 | tetraspanin-31-A | 0.2443451 | 0.1217740 | 3.1996718 |
| LOC725085 | basic helix-loop-helix neural transcription factor TAP | 0.5140976 | 0.1216045 | 3.6610214 |
| LOC100577823 | uncharacterized LOC100577823 | -0.0561342 | 0.1215100 | 3.4455407 |
| LOC100576130 | diuretic hormone 44 | -0.1151811 | 0.1212070 | -0.1119938 |
| LOC100578126 | zinc finger and BTB domain-containing protein 24-like | 0.2448480 | 0.1211034 | -0.0063949 |
| LOC102655773 | uncharacterized LOC102655773 | -0.2528341 | 0.1209126 | 0.1968974 |
| LOC551908 | uncharacterized LOC551908 | -0.1987029 | 0.1187703 | 5.4260759 |
| LOC107964965 | uncharacterized LOC107964965 | -1.1869568 | 0.1182890 | -1.1479205 |
| LOC102655619 | uncharacterized LOC102655619 | -0.0072191 | 0.1170019 | -0.6260943 |
| LOC107965192 | coatomer subunit epsilon | 0.0373997 | 0.1163995 | 7.1821798 |
| LOC552073 | arylsulfatase B-like | -1.3400262 | 0.1155730 | 5.9673710 |
| LOC102656220 | uncharacterized LOC102656220 | -1.7623921 | 0.1152130 | -2.3283908 |
| LOC410121 | thioredoxin domain-containing protein 11 | -0.0963951 | 0.1150295 | 4.6429804 |
| LOC408587 | histidine decarboxylase | -0.0324089 | 0.1142323 | 2.5676343 |
| LOC100576213 | lymphocyte cytosolic protein 2-like | -0.1129803 | 0.1139410 | 0.8745141 |
| LOC100578282 | uncharacterized LOC100578282 | -0.9968431 | 0.1136500 | -0.6198345 |
| LOC107964995 | uncharacterized LOC107964995 | -0.7011929 | 0.1132899 | -0.2230906 |
| LOC102654960 | uncharacterized LOC102654960 | -0.4991839 | 0.1131123 | -0.0892288 |
| LOC102655497 | uncharacterized LOC102655497 | -0.9849062 | 0.1129600 | -1.3707859 |
| LOC102653574 | uncharacterized LOC102653574 | 0.3253659 | 0.1124636 | -1.2850564 |
| LOC100577524 | autophagy-related protein 16-1-like | -0.1729495 | 0.1120138 | 2.8001531 |
| LOC100576423 | uncharacterized LOC100576423 | 0.7878425 | 0.1117280 | 1.8287715 |
| LOC411739 | stromal interaction molecule homolog | 0.0733742 | 0.1116085 | 5.7270120 |
| LOC724479 | zinc finger protein 394-like | 0.6044379 | 0.1115441 | 0.4549901 |
| LOC107964949 | uncharacterized LOC107964949 | 0.6033213 | 0.1114078 | 0.0877062 |
| LOC412439 | PDF receptor | -0.1226833 | 0.1109769 | 1.1357557 |
| LOC410499 | protein gooseberry | 0.0938408 | 0.1105375 | -1.3788844 |
| LOC107963988 | uncharacterized LOC107963988 | 0.6309238 | 0.1099935 | 0.5713880 |
| LOC552561 | protein FAM188B2 | -0.5359418 | 0.1094781 | -1.8272711 |
| LOC100576338 | uncharacterized LOC100576338 | -0.7623222 | 0.1092526 | -1.8685054 |
| LOC107964151 | uncharacterized LOC107964151 | 0.5348253 | 0.1089987 | -0.4962728 |
| LOC102655276 | uncharacterized LOC102655276 | 0.1920891 | 0.1088279 | 1.2869239 |
| LOC100578317 | uncharacterized LOC100578317 | 0.5223937 | 0.1087061 | -0.5482140 |
| LOC725724 | uncharacterized LOC725724 | -0.5296414 | 0.1082659 | 1.0579308 |
| LOC725856 | ras-related protein Rab-6.2 | -0.0683844 | 0.1078085 | 2.7189323 |
| LOC726039 | uncharacterized LOC726039 | -0.2448274 | 0.1073637 | -0.9713629 |
| LOC410354 | suppressor of fused homolog | -0.5500878 | 0.1073126 | 3.0131352 |
| LOC102656909 | uncharacterized LOC102656909 | -0.2662878 | 0.1065911 | -0.9587938 |
| LOC100577646 | uncharacterized LOC100577646 | 0.6040634 | 0.1064784 | 1.5079430 |
| LOC408431 | LIM domain-containing protein jub | 0.0977790 | 0.1062562 | 5.4711915 |
| LOC102656757 | homeobox protein Hox-B4-like | 0.0259173 | 0.1059011 | -1.5940923 |
| LOC107965819 | uncharacterized LOC107965819 | -0.2382126 | 0.1049469 | 0.3238279 |
| LOC725842 | elongation of very long chain fatty acids protein 6-like | -1.0887999 | 0.1047176 | -2.0394391 |
| LOC727549 | uncharacterized LOC727549 | 0.3054980 | 0.1044173 | 1.5495353 |
| LOC107964004 | uncharacterized LOC107964004 | -1.5419069 | 0.1040311 | -0.9924584 |
| LOC100577632 | phosphopantothenoylcysteine decarboxylase subunit VHS3-like | -1.4828283 | 0.1032417 | -1.9211816 |
| LOC107965238 | uncharacterized LOC107965238 | -0.6037642 | 0.1027213 | -1.4683182 |
| LOC410756 | regulating synaptic membrane exocytosis protein 1-like | -0.2911627 | 0.1024230 | 3.6331199 |
| LOC107965035 | uncharacterized LOC107965035 | -0.4409065 | 0.1024197 | -0.9873416 |
| LOC409639 | UPF0183 protein CG7083 | 0.2469732 | 0.1019103 | 3.9653004 |
| LOC102655726 | uncharacterized LOC102655726 | -1.8565173 | 0.1014022 | -1.8680752 |
| Para | sodium channel protein paralytic | -0.3440012 | 0.1007437 | 5.3453408 |
| LOC107964274 | uncharacterized LOC107964274 | -0.7239047 | 0.1006815 | -1.8363075 |
| LOC107965063 | uncharacterized LOC107965063 | -0.5934408 | 0.1004785 | 1.2296158 |
| LOC100576807 | uncharacterized LOC100576807 | 0.4341237 | 0.1000607 | -1.7814954 |
| LOC107964737 | uncharacterized LOC107964737 | 0.0971784 | 0.0997771 | -1.5356323 |
| LOC726833 | TOM1-like protein 2 | 0.0769583 | 0.0993686 | 4.7192050 |
| LOC107965277 | uncharacterized LOC107965277 | 0.0066829 | 0.0989143 | -0.1223569 |
| LOC102653933 | uncharacterized LOC102653933 | -0.5749712 | 0.0981278 | -2.4297852 |
| LOC724220 | synaptotagmin-10 | -0.2373773 | 0.0980877 | 0.8065258 |
| LOC107964155 | uncharacterized LOC107964155 | -0.7821817 | 0.0978272 | -0.8819811 |
| LOC724934 | paired mesoderm homeobox protein 2A | -0.8139550 | 0.0956678 | -0.4200505 |
| LOC107964138 | uncharacterized LOC107964138 | 0.1656877 | 0.0948459 | 4.4987763 |
| LOC410610 | calmodulin-like protein 4 | 0.0025304 | 0.0947375 | 3.7453025 |
| LOC102655432 | uncharacterized LOC102655432 | -0.0651109 | 0.0946532 | 2.6234106 |
| LOC551879 | phospholipase B1, membrane-associated-like | -0.4461650 | 0.0945953 | -1.5635956 |
| LOC726262 | adenylate cyclase type 8-like | -0.1187263 | 0.0944764 | 0.9599955 |
| LOC107966011 | uncharacterized LOC107966011 | -0.8731802 | 0.0944398 | -1.9691558 |
| LOC725078 | uncharacterized LOC725078 | -0.5772893 | 0.0942095 | 2.9932595 |
| LOC102655507 | uncharacterized LOC102655507 | -0.9953245 | 0.0937007 | -1.0660964 |
| LOC408517 | synaptic vesicular amine transporter | -0.6508247 | 0.0937004 | 3.7467403 |
| LOC107965694 | uncharacterized LOC107965694 | 0.8418466 | 0.0936871 | 0.2811359 |
| Glurb | metabotropic glutamate receptor B | -0.0472616 | 0.0936764 | 2.0148153 |
| LOC411493 | protein transport protein SFT2 | 0.0021676 | 0.0936149 | 3.8774384 |
| LOC107964334 | uncharacterized LOC107964334 | 0.0000000 | 0.0926636 | -2.6459890 |
| LOC107965684 | uncharacterized LOC107965684 | -0.3678703 | 0.0925424 | -0.9520253 |
| LOC107965443 | uncharacterized LOC107965443 | -0.5446624 | 0.0923648 | -0.1036581 |
| LOC107965851 | uncharacterized LOC107965851 | -1.0697500 | 0.0923137 | -2.0315870 |
| LOC102655557 | uncharacterized LOC102655557 | -0.2659399 | 0.0922460 | 0.0514735 |
| LOC100577004 | probable G-protein coupled receptor CG31760 | 0.6219751 | 0.0916441 | 0.8052559 |
| LOC102655600 | uncharacterized LOC102655600 | 0.0713757 | 0.0913818 | 3.9238693 |
| LOC107964073 | uncharacterized LOC107964073 | -2.1332496 | 0.0904365 | -2.3729148 |
| LOC100577839 | zinc finger protein 512B-like | -0.3962177 | 0.0901726 | -1.3578342 |
| LOC100577977 | uncharacterized LOC100577977 | -0.0684895 | 0.0894342 | -0.8562751 |
| LOC102656917 | uncharacterized LOC102656917 | 0.9665043 | 0.0883786 | 1.2104559 |
| LOC100578589 | uncharacterized LOC100578589 | 0.3058662 | 0.0881355 | -0.6961519 |
| LOC725238 | histone H1-like | 0.7861214 | 0.0880034 | 4.9940169 |
| LOC100578285 | uncharacterized LOC100578285 | -0.6751579 | 0.0871951 | -1.7176575 |
| LOC410620 | heat shock protein Hsp70Ab-like | -0.0331274 | 0.0871906 | 5.8283816 |
| LOC107965714 | uncharacterized LOC107965714 | 1.3772442 | 0.0869583 | -2.0521747 |
| LOC727464 | uncharacterized LOC727464 | 0.0167540 | 0.0867025 | 0.1046437 |
| LOC102654856 | uncharacterized LOC102654856 | -0.7667767 | 0.0863912 | -2.1001022 |
| LOC100577422 | uncharacterized LOC100577422 | -0.3978473 | 0.0862929 | 0.4173457 |
| LOC102656232 | uncharacterized LOC102656232 | -0.8647162 | 0.0860814 | -1.3619956 |
| LOC102656491 | signal peptidase complex subunit 1 | -0.4266061 | 0.0859269 | 5.8355620 |
| LOC410982 | protein croquemort | -0.3515713 | 0.0858875 | 5.8256878 |
| LOC100576913 | uncharacterized LOC100576913 | -0.0388047 | 0.0853840 | -0.5311872 |
| LOC727293 | guanine deaminase | -0.2608105 | 0.0846547 | 6.6062057 |
| LOC409277 | acidic phospholipase A2 PA4 | -0.8578408 | 0.0846043 | 3.6611227 |
| LOC102656898 | uncharacterized LOC102656898 | -1.1129065 | 0.0845676 | -1.0228349 |
| LOC724246 | growth/differentiation factor 2-like | -0.3667970 | 0.0835900 | -0.0854888 |
| LOC100577265 | uncharacterized LOC100577265 | 0.0948938 | 0.0835419 | 0.1259826 |
| LOC102654367 | uncharacterized LOC102654367 | -0.8949327 | 0.0829057 | -0.9366656 |
| LOC102654023 | uncharacterized LOC102654023 | -0.7496680 | 0.0825456 | -0.7917223 |
| LOC410373 | leucine-rich repeat-containing protein 15 | -1.1643594 | 0.0821483 | 3.7218410 |
| LOC100578841 | uncharacterized LOC100578841 | -0.7923840 | 0.0820127 | -1.3286688 |
| LOC726558 | low-density lipoprotein receptor-related protein 8-like | -0.0572141 | 0.0810184 | 4.0061485 |
| LOC100577278 | uncharacterized LOC100577278 | -0.1262883 | 0.0808592 | 1.1970752 |
| LOC107964431 | uncharacterized LOC107964431 | -1.7990123 | 0.0807292 | -2.0438877 |
| LOC107965410 | uncharacterized LOC107965410 | -0.6105647 | 0.0805661 | 0.0852421 |
| LOC107966014 | uncharacterized LOC107966014 | -0.1968186 | 0.0800724 | -1.6917911 |
| LOC102655555 | uncharacterized LOC102655555 | 0.4311768 | 0.0800309 | -0.8111464 |
| LOC107965479 | uncharacterized LOC107965479 | 0.0197719 | 0.0799258 | -0.7072955 |
| LOC411968 | kelch-like protein 10 | -0.0739982 | 0.0795386 | 2.3287691 |
| LOC100576351 | uncharacterized LOC100576351 | -1.8197504 | 0.0787694 | -0.5995564 |
| LOC100579005 | uncharacterized LOC100579005 | 0.1903965 | 0.0783868 | 0.2549989 |
| LOC107964733 | uncharacterized LOC107964733 | 0.0404455 | 0.0783667 | -1.7698427 |
| LOC725654 | cell growth regulator with RING finger domain protein 1-like | 0.2965141 | 0.0782233 | 5.6454019 |
| LOC107964989 | uncharacterized LOC107964989 | -1.2329816 | 0.0780313 | -2.2590163 |
| LOC102654939 | uncharacterized LOC102654939 | 0.4802789 | 0.0774587 | 0.9699380 |
| LOC107964188 | uncharacterized LOC107964188 | 0.4507077 | 0.0770084 | -1.8150691 |
| LOC410801 | cathepsin L1 | -0.0167083 | 0.0768981 | 0.4591816 |
| nAChRa9 | nicotinic acetylcholine receptor alpha9 subunit | 1.1527574 | 0.0768105 | 4.2261036 |
| LOC100577146 | uncharacterized LOC100577146 | 0.5644098 | 0.0755319 | 1.8401759 |
| LOC102656515 | metabotropic glutamate receptor 4-like | 0.1336441 | 0.0751325 | -2.3472426 |
| LOC551303 | hexosaminidase D-like | -0.3170671 | 0.0750394 | 1.8402422 |
| LOC100578194 | uncharacterized LOC100578194 | -0.6042432 | 0.0748889 | 1.9835527 |
| LOC726400 | forkhead box protein I1-ema-like | -0.2450708 | 0.0747917 | 1.8957911 |
| LOC107964207 | uncharacterized LOC107964207 | -0.3016496 | 0.0739516 | 1.6533117 |
| LOC100576799 | uncharacterized LOC100576799 | 0.2169572 | 0.0736943 | 5.4433481 |
| LOC102655058 | uncharacterized LOC102655058 | -0.8009298 | 0.0722339 | -2.2179326 |
| LOC726401 | ras-specific guanine nucleotide-releasing factor 2-like | 0.3855430 | 0.0719909 | -0.0528864 |
| LOC100578460 | short neuropeptide F-like | -0.5583991 | 0.0717634 | -1.2085826 |
| LOC100577522 | uncharacterized LOC100577522 | 1.4756624 | 0.0712053 | 2.3332084 |
| Dat | dopamine transporter | 0.8066359 | 0.0704247 | 0.2547708 |
| LOC107963999 | odorant receptor Or2-like | -0.9057078 | 0.0694775 | -2.5296825 |
| LOC552638 | myosin regulatory light chain sqh-like | -0.2781712 | 0.0692504 | 4.8031187 |
| LOC107964534 | uncharacterized LOC107964534 | 0.1961937 | 0.0691861 | -1.9929643 |
| LOC107964030 | uncharacterized LOC107964030 | 0.0902394 | 0.0687425 | -0.9320477 |
| LOC107964753 | uncharacterized LOC107964753 | -0.1418742 | 0.0687163 | -1.7652572 |
| LOC102654422 | inactive tyrosine-protein kinase transmembrane receptor ROR1-like | 0.4216497 | 0.0686318 | -2.0197670 |
| LOC102656308 | uncharacterized LOC102656308 | -0.5675533 | 0.0684337 | 1.8884574 |
| Or63 | odorant receptor 63 | 0.1357755 | 0.0681318 | -2.3442470 |
| LOC411417 | 3-oxoacyl-[acyl-carrier-protein] reductase FabG-like | 0.2409788 | 0.0679133 | 7.4221731 |
| LOC727625 | uncharacterized LOC727625 | -0.2504065 | 0.0673685 | 2.6146151 |
| LOC726309 | chaoptin-like | -0.0744211 | 0.0672164 | 1.0719062 |
| LOC100576949 | uncharacterized LOC100576949 | -0.2529431 | 0.0664274 | 4.5241277 |
| LOC102654138 | uncharacterized LOC102654138 | -0.0738239 | 0.0661953 | -0.7826678 |
| LOC100576934 | uncharacterized LOC100576934 | -0.8811290 | 0.0660888 | -0.5091654 |
| LOC413973 | probable tubulin polyglutamylase TTLL9 | 0.8483029 | 0.0652434 | -2.0121125 |
| LOC102654445 | uncharacterized LOC102654445 | 0.5170945 | 0.0647138 | 0.3403336 |
| LOC107965148 | uncharacterized LOC107965148 | 0.4953909 | 0.0642778 | -0.8220954 |
| LOC107964292 | uncharacterized LOC107964292 | -0.3516238 | 0.0641956 | -1.9738269 |
| CSP4 | chemosensory protein 4 | -0.4081384 | 0.0640209 | 0.1767132 |
| LOC726458 | ETS-like protein pointed | -0.2523686 | 0.0638780 | -1.1720943 |
| LOC100577183 | uncharacterized LOC100577183 | -1.2070279 | 0.0634076 | -1.0459690 |
| LOC107965174 | uncharacterized LOC107965174 | -0.5682062 | 0.0632995 | 0.3914574 |
| LOC102654320 | uncharacterized LOC102654320 | -0.4442677 | 0.0630164 | -1.7095048 |
| LOC411595 | clathrin light chain | -0.0271635 | 0.0627122 | 7.1496338 |
| LOC102653671 | pre-mRNA-processing factor 40 homolog A | 0.6413292 | 0.0625036 | -0.0897418 |
| LOC724121 | uncharacterized LOC724121 | 0.3580473 | 0.0623222 | 3.2645521 |
| LOC107964050 | uncharacterized LOC107964050 | -0.1313052 | 0.0613760 | -1.2507271 |
| LOC107964167 | uncharacterized LOC107964167 | -0.2459111 | 0.0608807 | -2.3063545 |
| LOC102654509 | uncharacterized LOC102654509 | -0.0474404 | 0.0606717 | 1.2007745 |
| LOC107964851 | uncharacterized LOC107964851 | 0.1771447 | 0.0606011 | -1.5042646 |
| LOC412341 | alpha-methylacyl-CoA racemase | -0.0260949 | 0.0597108 | 4.6321862 |
| LOC412662 | programmed cell death 6-interacting protein | 0.0079516 | 0.0595257 | 7.6593086 |
| LOC726905 | cilia- and flagella-associated protein 61-like | 0.3758048 | 0.0585837 | 0.4567508 |
| LOC100576631 | uncharacterized LOC100576631 | -0.2425773 | 0.0584950 | -2.0574126 |
| LOC411807 | uncharacterized LOC411807 | 0.0601926 | 0.0584421 | 5.2559242 |
| LOC107964466 | uncharacterized LOC107964466 | -1.2669332 | 0.0583645 | 0.6214514 |
| LOC102654477 | uncharacterized LOC102654477 | 0.9392594 | 0.0580491 | -1.0774235 |
| LOC107964419 | X-linked retinitis pigmentosa GTPase regulator-interacting protein 1-like | -0.2688970 | 0.0573210 | -0.9593935 |
| LOC107966116 | uncharacterized LOC107966116 | -0.2879357 | 0.0572636 | 0.4152817 |
| LOC551519 | uncharacterized LOC551519 | 0.0003799 | 0.0570028 | 7.5461695 |
| LOC724767 | sodium channel protein Nach | -0.7421989 | 0.0566576 | -1.8143706 |
| LOC107964955 | uncharacterized LOC107964955 | -0.1172359 | 0.0565841 | -0.4967173 |
| LOC107964447 | uncharacterized LOC107964447 | 0.4777429 | 0.0565839 | 0.4723711 |
| Amel_8916 | cys-loop ligand-gated ion channel subunit 8916 | -0.2260074 | 0.0565118 | -2.0765077 |
| LOC551744 | phospholipase ABHD3 | 0.3030592 | 0.0562035 | 6.9372033 |
| LOC107964608 | uncharacterized LOC107964608 | -0.6458445 | 0.0557328 | -0.8965369 |
| LOC411651 | Bardet-Biedl syndrome 7 protein homolog | -0.4235952 | 0.0556761 | -2.0218017 |
| LOC726240 | globin-1 | -0.2057074 | 0.0553923 | -0.2199360 |
| LOC412972 | WD repeat domain phosphoinositide-interacting protein 3 | 0.1252383 | 0.0551912 | 4.3827082 |
| LOC100576277 | uncharacterized LOC100576277 | -0.2707089 | 0.0550925 | 1.9799194 |
| LOC724783 | uncharacterized LOC724783 | -0.8714875 | 0.0550198 | -1.3154135 |
| LOC726898 | carbonic anhydrase 3 | -0.2530292 | 0.0548273 | -1.9060937 |
| LOC100578561 | early growth response protein 1-like | -0.5300821 | 0.0546982 | -1.5170184 |
| LOC107965262 | uncharacterized LOC107965262 | -0.7813439 | 0.0545950 | -1.2922228 |
| LOC408847 | uroporphyrinogen-III synthase | -0.1883997 | 0.0545314 | 4.0940362 |
| LOC726253 | UDP-N-acetylglucosamine transferase subunit ALG13 homolog | -0.5288844 | 0.0541994 | 0.9841728 |
| LOC102654348 | uncharacterized LOC102654348 | 0.3327555 | 0.0533058 | -0.9219884 |
| LOC100576207 | uncharacterized LOC100576207 | -0.5217484 | 0.0532873 | -2.5611484 |
| LOC727473 | signal recognition particle 19 kDa protein | 0.0984415 | 0.0532114 | 4.5779960 |
| LOC409572 | TWiK family of potassium channels protein 7-like | 0.0308936 | 0.0531217 | 2.0047657 |
| LOC725031 | elongation of very long chain fatty acids protein 6 | -0.2074012 | 0.0531000 | 7.5196328 |
| LOC100577476 | uncharacterized LOC100577476 | 0.5336611 | 0.0527890 | 0.2162197 |
| LOC102653972 | uncharacterized LOC102653972 | -0.2038147 | 0.0524109 | -1.2797023 |
| LOC107964315 | uncharacterized LOC107964315 | 0.1896914 | 0.0522944 | 0.3583712 |
| LOC552368 | bumetanide-sensitive sodium-(potassium)-chloride cotransporter-like | -0.9128623 | 0.0522139 | 0.7131481 |
| LOC102655334 | uncharacterized LOC102655334 | -1.2715862 | 0.0520790 | -0.4168162 |
| LOC107965445 | uncharacterized LOC107965445 | 0.4802067 | 0.0519950 | -2.3022964 |
| LOC412827 | Bardet-Biedl syndrome 2 protein homolog | 0.1241324 | 0.0509082 | -0.5093553 |
| Pcl | polycomblike | -0.0802554 | 0.0508849 | -1.5972384 |
| LOC107965278 | uncharacterized LOC107965278 | -0.1231816 | 0.0508696 | -0.4068401 |
| LOC408600 | nucleobindin-2 | -0.2509734 | 0.0505841 | 7.6488681 |
| LOC102655106 | uncharacterized LOC102655106 | -0.7583648 | 0.0499861 | -1.5804219 |
| LOC724458 | achaete-scute complex protein T3-like | 0.3427242 | 0.0499150 | 0.1808763 |
| LOC102656672 | uncharacterized LOC102656672 | 0.0000000 | 0.0496309 | -2.6459890 |
| LOC102653590 | protein unc-79 homolog | -0.1849173 | 0.0490515 | -1.5271060 |
| LOC107964420 | uncharacterized LOC107964420 | 0.0648857 | 0.0490027 | -0.5006350 |
| LOC107965165 | uncharacterized LOC107965165 | -0.2784963 | 0.0489839 | -2.3525367 |
| LOC107964563 | uncharacterized LOC107964563 | -0.6020143 | 0.0489615 | -1.1888713 |
| LOC551619 | transmembrane protein 8B | -0.0388082 | 0.0487548 | 4.7982569 |
| LOC107964503 | uncharacterized LOC107964503 | -0.3580254 | 0.0484713 | -1.8083553 |
| LOC724236 | chymotrypsin-like protease CTRL-1 | -0.6872554 | 0.0484659 | -2.4791640 |
| LOC107964267 | uncharacterized LOC107964267 | -0.5768755 | 0.0482969 | 1.2782218 |
| LOC724148 | homeobox protein MSX-2 | 0.3404271 | 0.0480942 | 0.5732129 |
| LOC102656919 | uncharacterized LOC102656919 | -0.2896669 | 0.0480644 | -0.5295353 |
| LOC100577017 | uncharacterized LOC100577017 | -0.0361125 | 0.0479053 | 0.2567975 |
| LOC107964052 | uncharacterized LOC107964052 | -0.4489544 | 0.0478402 | -1.5571685 |
| LOC107966049 | uncharacterized LOC107966049 | -0.3598396 | 0.0477841 | -1.9561668 |
| LOC102655326 | uncharacterized LOC102655326 | 0.5775648 | 0.0476814 | -1.9066229 |
| Pla2 | phospholipase A2 | -0.3498887 | 0.0475357 | -1.7113150 |
| LOC411104 | homeobox protein Nkx-2.4 | 0.0933779 | 0.0474390 | 2.4550715 |
| LOC102654005 | uncharacterized LOC102654005 | -0.4443111 | 0.0472589 | -1.2565207 |
| LOC107964102 | uncharacterized LOC107964102 | 0.8710094 | 0.0468072 | -1.6314378 |
| LOC107964567 | uncharacterized LOC107964567 | 0.2700523 | 0.0467573 | 1.5001316 |
| LOC410633 | organic cation transporter protein-like | -1.0650068 | 0.0466806 | -1.2709599 |
| LOC413380 | yellow-g2 | -0.0904893 | 0.0465083 | 0.5680617 |
| LOC410165 | RNA-binding protein Nova-1 | -0.1613315 | 0.0463335 | 7.3679990 |
| LOC107965343 | uncharacterized LOC107965343 | -1.6422487 | 0.0461450 | -2.4491688 |
| LOC107964776 | uncharacterized LOC107964776 | 0.3477087 | 0.0458918 | -2.2121356 |
| LOC107964996 | uncharacterized LOC107964996 | -0.5492176 | 0.0457719 | -0.0863184 |
| LOC107965155 | uncharacterized LOC107965155 | -0.4237183 | 0.0455985 | -1.4558504 |
| LOC412157 | HEAT repeat-containing protein 5B | -0.1242023 | 0.0453996 | 5.5413053 |
| LOC100576320 | uncharacterized LOC100576320 | 0.3542271 | 0.0450904 | -0.2284243 |
| LOC409539 | microtubule-associated protein tau-like | 0.1393950 | 0.0446059 | 1.5748133 |
| LOC551529 | fibroblast growth factor 1-like | -0.2222195 | 0.0445955 | 3.4335223 |
| LOC107963997 | uncharacterized LOC107963997 | 0.8194211 | 0.0445915 | 0.9490301 |
| LOC102656648 | uncharacterized LOC102656648 | -0.0785352 | 0.0439171 | -2.5330537 |
| LOC100577235 | SET and MYND domain-containing protein 4-like | -1.1425925 | 0.0438901 | -2.3499679 |
| LOC102655740 | mitochondrial import receptor subunit TOM40 homolog 1-like | 0.0177606 | 0.0438061 | 0.1079574 |
| LOC102654095 | uncharacterized LOC102654095 | -0.7148806 | 0.0437010 | 0.7868496 |
| LOC107965490 | uncharacterized LOC107965490 | -0.2855002 | 0.0436438 | -0.6532901 |
| LOC410042 | glyoxylate reductase/hydroxypyruvate reductase-like | 0.1975708 | 0.0436066 | 7.1923328 |
| LOC411725 | tektin-3-like | -0.2995598 | 0.0435789 | 0.5794902 |
| LOC100577678 | putative uncharacterized protein DDB_G0286901 | 0.0839544 | 0.0429670 | 0.2862766 |
| LOC412193 | coiled-coil domain-containing protein 39 | -0.7686089 | 0.0429320 | -1.2743263 |
| LOC107964058 | uncharacterized LOC107964058 | -0.1410705 | 0.0427802 | -1.2350018 |
| LOC107965247 | uncharacterized LOC107965247 | -0.2421675 | 0.0426381 | -2.3066862 |
| LOC102656135 | uncharacterized LOC102656135 | -0.7167810 | 0.0424724 | -0.9758289 |
| LOC552454 | xenotropic and polytropic retrovirus receptor 1-like | 0.5301884 | 0.0423190 | -0.6984726 |
| LOC107964630 | uncharacterized LOC107964630 | -0.1083264 | 0.0420987 | -1.7763970 |
| LOC107965282 | uncharacterized LOC107965282 | -0.2272825 | 0.0420541 | -2.2137396 |
| Or115 | odorant receptor 115 | 0.8701067 | 0.0418996 | -1.5293542 |
| LOC107964093 | uncharacterized LOC107964093 | -0.6453618 | 0.0414162 | -1.6854074 |
| LOC100578696 | uncharacterized LOC100578696 | -0.5610083 | 0.0411581 | 5.5212530 |
| LOC107965163 | esterase B1-like | 0.8213909 | 0.0410410 | -1.0030333 |
| LOC725263 | tumor protein p53-inducible nuclear protein 2-like | 0.3132383 | 0.0407155 | 6.4793109 |
| LOC107964455 | uncharacterized LOC107964455 | -0.6792263 | 0.0404858 | -1.6325945 |
| LOC102655674 | uncharacterized LOC102655674 | -0.5851166 | 0.0403039 | -2.1485294 |
| LOC107965012 | uncharacterized LOC107965012 | 0.2261613 | 0.0402828 | -1.8464252 |
| LOC102654587 | uncharacterized LOC102654587 | 0.0755074 | 0.0402822 | -1.5580073 |
| LOC552210 | fumarylacetoacetase | 0.0798784 | 0.0396644 | 1.6783822 |
| LOC724950 | integrin beta-PS-like | 0.3705982 | 0.0394390 | 1.8868656 |
| LOC100578799 | uncharacterized LOC100578799 | -0.6542007 | 0.0393441 | -1.2360081 |
| LOC107965054 | uncharacterized LOC107965054 | -0.7325577 | 0.0389505 | -0.9943619 |
| LOC102653977 | uncharacterized LOC102653977 | 0.0675784 | 0.0388687 | 1.2719821 |
| LOC552711 | anoctamin-4 | -0.4045549 | 0.0381844 | -0.9198039 |
| LOC102654730 | uncharacterized LOC102654730 | 1.2073423 | 0.0380100 | -2.4048906 |
| LOC100576520 | uncharacterized LOC100576520 | -0.6656080 | 0.0379970 | -1.7122350 |
| LOC409405 | baculoviral IAP repeat-containing protein 5 | 0.0643614 | 0.0378745 | 6.1251680 |
| LOC725557 | cuticle protein 7 | -0.4148717 | 0.0378621 | -1.4711692 |
| LOC411569 | protein TANC2-like | -0.7009211 | 0.0376146 | 7.0930083 |
| LOC102654173 | uncharacterized LOC102654173 | -0.9155536 | 0.0373143 | -1.8124066 |
| LOC107964411 | uncharacterized LOC107964411 | -0.2252461 | 0.0370420 | 0.4539569 |
| LOC100576508 | uronyl 2-sulfotransferase-like | -0.4909815 | 0.0370131 | 2.3367679 |
| LOC102654523 | uncharacterized LOC102654523 | 0.0013790 | 0.0368965 | 0.1536417 |
| LOC551562 | dynein beta chain, ciliary | -1.7171074 | 0.0365559 | 0.4776329 |
| LOC107964817 | uncharacterized LOC107964817 | -0.3365136 | 0.0361853 | 0.1740366 |
| LOC552028 | sodium-coupled neutral amino acid transporter 9 homolog | -0.7804943 | 0.0361169 | 4.5795878 |
| LOC410537 | protein lozenge-like | 0.0716922 | 0.0359587 | 2.5304078 |
| LOC727189 | geranylgeranyl pyrophosphate synthase | 0.2532770 | 0.0357654 | 4.0003124 |
| LOC552240 | sodium-dependent dopamine transporter-like | 0.6333328 | 0.0351164 | -0.2663841 |
| LOC724861 | transcription factor Maf | -0.3391718 | 0.0349532 | -1.1736364 |
| LOC100578838 | chymotrypsin inhibitor-like | 0.0000000 | 0.0347534 | -2.6459890 |
| LOC102654662 | uncharacterized LOC102654662 | -0.4735961 | 0.0344964 | 0.1915153 |
| LOC100576299 | uncharacterized LOC100576299 | -0.7006073 | 0.0344307 | -1.7456947 |
| LOC724799 | (E3-independent) E2 ubiquitin-conjugating enzyme UBE2O | -0.0804306 | 0.0340323 | 5.1560676 |
| LOC107965570 | uncharacterized LOC107965570 | -0.1108304 | 0.0340286 | -1.9735504 |
| LOC412457 | T-cell activation inhibitor, mitochondrial-like | 0.0151917 | 0.0339270 | 4.7313622 |
| LOC725243 | uncharacterized LOC725243 | -0.0343360 | 0.0337349 | 0.0820225 |
| LOC727146 | sphingomyelin phosphodiesterase | 0.7365169 | 0.0336781 | 6.3427338 |
| LOC107965329 | uncharacterized LOC107965329 | 0.7946029 | 0.0335118 | -0.0707078 |
| LOC102656087 | uncharacterized LOC102656087 | 0.2062025 | 0.0330749 | -0.9867349 |
| LOC107965311 | uncharacterized LOC107965311 | -0.8577606 | 0.0330513 | -0.9885636 |
| LOC725664 | uncharacterized LOC725664 | 0.7939596 | 0.0330021 | -0.4129194 |
| LOC107965662 | uncharacterized LOC107965662 | -0.7482110 | 0.0329954 | -2.6174325 |
| LOC107964730 | uncharacterized LOC107964730 | 0.7374925 | 0.0325763 | -2.0249578 |
| LOC102655885 | uncharacterized LOC102655885 | 0.7900318 | 0.0325085 | 2.0333714 |
| Hb | hunchback | -0.0948561 | 0.0324833 | -1.2793440 |
| Dl | dorsal | 0.1207918 | 0.0323643 | 5.7461471 |
| LOC102656730 | uncharacterized LOC102656730 | -0.6616507 | 0.0322712 | -0.0326399 |
| LOC102656724 | uncharacterized LOC102656724 | -0.3477808 | 0.0320120 | -0.5158394 |
| LOC102656762 | uncharacterized LOC102656762 | -0.0829207 | 0.0316206 | 0.1052170 |
| LOC100576630 | uncharacterized LOC100576630 | 0.2124896 | 0.0316123 | -0.0546438 |
| LOC102654437 | uncharacterized LOC102654437 | 0.8435980 | 0.0313919 | -1.7064591 |
| LOC725958 | mucosa-associated lymphoid tissue lymphoma translocation protein 1-like | -0.2490028 | 0.0312248 | 3.0276287 |
| LOC408973 | neprilysin-2 | -0.8523057 | 0.0310854 | 2.3971574 |
| LOC552153 | vesicle transport protein SEC20 | -0.3312247 | 0.0310689 | 4.3358877 |
| LOC107965211 | uncharacterized LOC107965211 | 0.3823115 | 0.0305388 | 0.0434564 |
| LOC412775 | dynein heavy chain 2, axonemal | -0.1181984 | 0.0299507 | -0.4377018 |
| LOC102654141 | uncharacterized LOC102654141 | -0.4219595 | 0.0299054 | -0.9313300 |
| LOC100576224 | carbonic anhydrase 2-like | -0.4645032 | 0.0295889 | -0.8584031 |
| LOC102654617 | uncharacterized LOC102654617 | 1.5336423 | 0.0293572 | -2.4520694 |
| LOC102654287 | uncharacterized LOC102654287 | 0.1438153 | 0.0293330 | -2.1117204 |
| LOC100576150 | MYCBP-associated protein-like | -1.9838124 | 0.0292535 | -2.3978016 |
| LOC727429 | histone-lysine N-methyltransferase SETMAR-like | -0.1524603 | 0.0292493 | 1.7009148 |
| LOC102654746 | T-complex-associated testis-expressed protein 1 | -0.0863995 | 0.0289413 | -1.1599442 |
| LOC107965616 | uncharacterized LOC107965616 | 0.6305368 | 0.0288947 | -2.2135993 |
| LOC102656111 | uncharacterized LOC102656111 | 1.2422775 | 0.0287161 | -1.8794132 |
| LOC725482 | L-lactate dehydrogenase A-like 6A | -0.2022779 | 0.0285885 | -1.2517400 |
| LOC102655089 | uncharacterized LOC102655089 | -1.1653705 | 0.0285818 | -2.5077084 |
| LOC408387 | HIV Tat-specific factor 1 homolog | -0.2556036 | 0.0285043 | 4.7673719 |
| LOC107965064 | uncharacterized LOC107965064 | 0.3417401 | 0.0284888 | -0.8766343 |
| LOC102654800 | histone-lysine N-methyltransferase SETMAR-like | -0.0738454 | 0.0282580 | 1.6162911 |
| LOC100577542 | uncharacterized LOC100577542 | -0.0846791 | 0.0282348 | 1.1546699 |
| LOC107965865 | uncharacterized LOC107965865 | 2.0647177 | 0.0280659 | -2.5075574 |
| LOC107964868 | uncharacterized LOC107964868 | 0.5596417 | 0.0280495 | -1.7669875 |
| LOC107964991 | odorant receptor 94b-like | 0.1630226 | 0.0279767 | 0.1035476 |
| LOC725542 | arrestin domain-containing protein 2 | -1.3686317 | 0.0279721 | -2.0240400 |
| LOC102655048 | uncharacterized LOC102655048 | -0.8873368 | 0.0274226 | -2.5310272 |
| LOC725649 | synaptonemal complex protein 1-like | -0.2506297 | 0.0271411 | 0.3871820 |
| LOC100577743 | uncharacterized LOC100577743 | 0.5649853 | 0.0268295 | -0.3707669 |
| LOC102654731 | uncharacterized LOC102654731 | -0.4573543 | 0.0267890 | -1.9420293 |
| LOC410947 | tyrosine decarboxylase | 0.2694060 | 0.0261689 | -1.0610632 |
| LOC100576283 | uncharacterized LOC100576283 | 0.6442185 | 0.0257219 | 0.0680132 |
| LOC102653755 | uncharacterized LOC102653755 | -0.3010511 | 0.0256928 | 0.0722186 |
| LOC102656324 | uncharacterized LOC102656324 | -1.3640308 | 0.0255584 | -1.6205039 |
| LOC102656698 | uncharacterized LOC102656698 | -0.3667804 | 0.0253832 | -1.2305889 |
| LOC107966069 | uncharacterized LOC107966069 | 0.4695476 | 0.0252335 | -1.2424202 |
| LOC724315 | forkhead box protein D3-like | -0.8852754 | 0.0251958 | -0.0941207 |
| LOC107964760 | uncharacterized LOC107964760 | -0.8129302 | 0.0244161 | 0.7552757 |
| LOC102656706 | uncharacterized LOC102656706 | 0.9556696 | 0.0241425 | -1.2094530 |
| LOC413924 | glyceraldehyde-3-phosphate dehydrogenase-like | -0.3391303 | 0.0240622 | -1.5784606 |
| LOC102656242 | uncharacterized LOC102656242 | 0.1428595 | 0.0240558 | -2.0626639 |
| LOC107965239 | uncharacterized LOC107965239 | -2.4080307 | 0.0239638 | -1.6438352 |
| LOC102653840 | uncharacterized LOC102653840 | -0.2844400 | 0.0236405 | -1.2915612 |
| LOC102655649 | potassium voltage-gated channel subfamily KQT member 1-like | 0.0906428 | 0.0234907 | -1.5473183 |
| LOC107964586 | uncharacterized LOC107964586 | -0.4845899 | 0.0231800 | 4.8374631 |
| LOC107965032 | uncharacterized LOC107965032 | 1.1186238 | 0.0228414 | -2.2551335 |
| LOC107965932 | uncharacterized LOC107965932 | 0.1805387 | 0.0227482 | -2.0050281 |
| LOC102654638 | uncharacterized LOC102654638 | -1.0043863 | 0.0227461 | -0.6055314 |
| LOC107964280 | uncharacterized LOC107964280 | -0.0134243 | 0.0226490 | -1.6441930 |
| LOC102656272 | uncharacterized LOC102656272 | -1.1537006 | 0.0225313 | -2.5045164 |
| LOC102655610 | uncharacterized LOC102655610 | 0.0009783 | 0.0223795 | -0.8010262 |
| LOC102656218 | uncharacterized LOC102656218 | -2.4862059 | 0.0221910 | -2.2994413 |
| LOC102654321 | uncharacterized LOC102654321 | 0.2550489 | 0.0221544 | -0.3928231 |
| LOC107964145 | uncharacterized LOC107964145 | -0.3888220 | 0.0220733 | -2.2775400 |
| LOC107964172 | uncharacterized LOC107964172 | 0.5944969 | 0.0220690 | -1.6952149 |
| LOC107964230 | uncharacterized LOC107964230 | -0.0278188 | 0.0215301 | -1.6995424 |
| LOC102654217 | histone-lysine N-methyltransferase SETMAR-like | -0.5440759 | 0.0213183 | 1.2248825 |
| LOC107964720 | uncharacterized LOC107964720 | -0.1899639 | 0.0207437 | -0.7596430 |
| Or37 | odorant receptor 37 | -0.7013462 | 0.0207422 | -2.4744574 |
| LOC725568 | uncharacterized LOC725568 | -0.0785144 | 0.0206811 | 4.2411073 |
| LOC409800 | unconventional myosin-IXb-like | -0.1885673 | 0.0206757 | 0.0132027 |
| LOC107964430 | uncharacterized LOC107964430 | -0.8820382 | 0.0206381 | -2.0631086 |
| LOC724391 | A disintegrin and metalloproteinase with thrombospondin motifs 7 | -0.2431415 | 0.0203963 | -1.9160573 |
| LOC102655793 | uncharacterized LOC102655793 | 0.1428003 | 0.0203929 | -1.5443143 |
| LOC107965286 | uncharacterized LOC107965286 | -0.1536507 | 0.0203196 | -1.8988691 |
| LOC100577845 | neprilysin-1-like | 0.2546566 | 0.0203103 | 1.2650930 |
| LOC100577054 | uncharacterized LOC100577054 | -0.8755287 | 0.0202182 | -0.2740611 |
| LOC107964352 | uncharacterized LOC107964352 | -0.0955000 | 0.0200202 | 0.8019952 |
| LOC107964711 | uncharacterized LOC107964711 | 0.0863550 | 0.0199194 | -1.3556222 |
| LOC726615 | meiosis-specific nuclear structural protein 1-like | 0.0207232 | 0.0198320 | -1.7726300 |
| LOC107965540 | uncharacterized LOC107965540 | 0.7083540 | 0.0198045 | -0.9949487 |
| LOC102654417 | uncharacterized LOC102654417 | -0.3023336 | 0.0196945 | 0.3110637 |
| LOC107964962 | MFS-type transporter SLC18B1-like | -0.8183747 | 0.0193729 | 6.0076296 |
| LOC107965622 | uncharacterized LOC107965622 | -0.2612890 | 0.0192831 | -1.9493233 |
| LOC102655720 | uncharacterized LOC102655720 | 0.7263842 | 0.0192251 | -2.6150151 |
| LOC107964749 | uncharacterized LOC107964749 | -0.1185221 | 0.0192211 | -0.8208194 |
| LOC102654543 | uncharacterized LOC102654543 | -0.1382040 | 0.0191527 | -0.7957387 |
| LOC107964066 | uncharacterized LOC107964066 | -0.5069083 | 0.0190111 | -1.3727472 |
| LOC107964627 | uncharacterized LOC107964627 | -0.1707805 | 0.0190029 | -2.0905454 |
| LOC102656543 | decaprenyl-diphosphate synthase subunit 1-like | 1.2050132 | 0.0189773 | 0.2252816 |
| LOC411186 | synaptic vesicle glycoprotein 2C | 1.1045467 | 0.0187713 | 3.5318640 |
| LOC107964055 | uncharacterized LOC107964055 | 1.1287030 | 0.0187682 | -2.2538241 |
| LOC412570 | tachykinin-like peptides receptor 99D | -0.0249309 | 0.0186649 | -0.2722051 |
| LOC100577260 | uncharacterized LOC100577260 | 0.9584487 | 0.0186415 | 1.1268457 |
| LOC107965077 | uncharacterized LOC107965077 | -0.9489585 | 0.0185832 | -1.7157085 |
| LOC102656636 | uncharacterized LOC102656636 | 0.5316745 | 0.0184389 | 1.3968294 |
| LOC100578016 | uncharacterized LOC100578016 | -0.0131123 | 0.0180501 | -1.5181743 |
| LOC102653607 | uncharacterized LOC102653607 | -1.1646222 | 0.0179562 | -2.5056416 |
| LOC102655502 | uncharacterized LOC102655502 | -0.4291073 | 0.0179481 | -1.3238144 |
| LOC107965434 | uncharacterized LOC107965434 | 0.1393538 | 0.0179044 | -2.5793531 |
| LOC410370 | actin-binding Rho-activating protein-like | -0.8392115 | 0.0177484 | 3.8965751 |
| LOC412925 | D-galactonate transporter | -0.8485901 | 0.0174961 | -0.0824512 |
| LOC107964550 | uncharacterized LOC107964550 | -0.7104824 | 0.0172327 | -1.3127912 |
| LOC107965258 | uncharacterized LOC107965258 | -0.1773189 | 0.0172223 | -2.1668419 |
| LOC107964046 | uncharacterized LOC107964046 | -0.6299388 | 0.0171632 | -2.3063823 |
| LOC107965351 | uncharacterized LOC107965351 | 0.7251577 | 0.0171122 | -2.6152508 |
| LOC100578455 | uncharacterized LOC100578455 | 0.2099810 | 0.0170040 | 1.4461453 |
| LOC727151 | tetratricopeptide repeat protein 12-like | -0.2723844 | 0.0169663 | -0.9193787 |
| LOC107965852 | uncharacterized LOC107965852 | 1.3360977 | 0.0169371 | -1.2428969 |
| LOC107964174 | uncharacterized LOC107964174 | -0.3387983 | 0.0168959 | -2.1924922 |
| LOC107964143 | uncharacterized LOC107964143 | 0.1430355 | 0.0168923 | -1.3320789 |
| LOC102656251 | uncharacterized LOC102656251 | -0.9844985 | 0.0167255 | -2.2333563 |
| LOC102653804 | uncharacterized LOC102653804 | -0.6832482 | 0.0167093 | -0.9205307 |
| LOC107964256 | uncharacterized LOC107964256 | -0.1756894 | 0.0166081 | -1.7189190 |
| LOC102653743 | uncharacterized LOC102653743 | 0.0174546 | 0.0165515 | 0.8075689 |
| LOC100576116 | protein inscuteable homolog | 0.0121334 | 0.0164167 | 3.2038910 |
| LOC107965832 | uncharacterized LOC107965832 | -0.1074133 | 0.0163426 | 0.5885640 |
| LOC107965044 | uncharacterized LOC107965044 | -0.2309659 | 0.0163415 | -1.2600567 |
| LOC724258 | uncharacterized LOC724258 | 0.0331994 | 0.0163399 | -1.5805244 |
| LOC107965747 | uncharacterized LOC107965747 | -0.5871596 | 0.0161493 | -1.7367300 |
| Blop | blue-sensitive opsin | 0.2981555 | 0.0161091 | -0.3315715 |
| LOC413098 | glucose dehydrogenase [FAD, quinone] | 0.0125175 | 0.0152261 | 4.1389521 |
| LOC107964977 | uncharacterized LOC107964977 | 0.7865468 | 0.0151967 | -1.0792009 |
| LOC107965981 | uncharacterized LOC107965981 | 1.1535625 | 0.0151675 | -2.1063390 |
| LOC551029 | inhibitor of growth protein 5 | 0.1240189 | 0.0151662 | 4.6201515 |
| LOC102656332 | uncharacterized LOC102656332 | 0.6231001 | 0.0151543 | -0.9899525 |
| LOC107964805 | cell wall protein AWA1-like | -0.7665880 | 0.0150804 | -2.2769256 |
| LOC107964235 | uncharacterized LOC107964235 | 0.2329234 | 0.0150077 | -0.3487349 |
| LOC100576593 | uncharacterized LOC100576593 | 0.4087736 | 0.0149697 | -2.3791879 |
| LOC100578289 | oocyte zinc finger protein XlCOF6-like | -0.7911523 | 0.0149322 | -2.3971321 |
| LOC551571 | pyrokinin-like receptor 1 | -0.3144010 | 0.0148839 | 0.9898772 |
| LOC102655776 | uncharacterized LOC102655776 | -0.7600944 | 0.0148367 | -0.3180418 |
| LOC410870 | otopetrin-3-like | -0.3456055 | 0.0147965 | -2.0066363 |
| LOC102656284 | uncharacterized LOC102656284 | 0.2852132 | 0.0146952 | -2.2807036 |
| LOC107966018 | uncharacterized LOC107966018 | 1.0234265 | 0.0144996 | -1.9344810 |
| LOC107964477 | uncharacterized LOC107964477 | -0.1460334 | 0.0144281 | -1.6947923 |
| LOC100577275 | uncharacterized LOC100577275 | 0.3026960 | 0.0144238 | -2.0842540 |
| LOC107965111 | uncharacterized LOC107965111 | -0.3053081 | 0.0143942 | -2.0484357 |
| LOC102654998 | uncharacterized LOC102654998 | -0.1994288 | 0.0143446 | -1.4554225 |
| LOC100576156 | beta-TrCP-like | 0.6506857 | 0.0142881 | 1.6152970 |
| LOC107964639 | uncharacterized LOC107964639 | -0.4468381 | 0.0140839 | -2.0199922 |
| LOC102656875 | uncharacterized LOC102656875 | 0.5816163 | 0.0140784 | -0.6388492 |
| LOC102656690 | uncharacterized LOC102656690 | -0.4091867 | 0.0137861 | -2.5068822 |
| LOC100577955 | odorant receptor 13a-like | 0.7009882 | 0.0137777 | -1.4618631 |
| LOC100576853 | uncharacterized LOC100576853 | 0.5910774 | 0.0135778 | 1.3581951 |
| LOC102655947 | uncharacterized LOC102655947 | 0.0983290 | 0.0134951 | -1.7154372 |
| LOC107965488 | uncharacterized LOC107965488 | -0.0863913 | 0.0134312 | -1.9174472 |
| LOC107965715 | uncharacterized LOC107965715 | -0.5601985 | 0.0133034 | -1.8776215 |
| LOC100578316 | uncharacterized LOC100578316 | -0.0556995 | 0.0130477 | -1.3132308 |
| LOC102656297 | uncharacterized LOC102656297 | -0.5622723 | 0.0127481 | -1.8836034 |
| LOC412554 | transmembrane emp24 domain-containing protein eca | -0.0571056 | 0.0126041 | 7.0810781 |
| LOC107964193 | uncharacterized LOC107964193 | -0.0793966 | 0.0124627 | -1.9810807 |
| LOC107965699 | uncharacterized LOC107965699 | -0.6026631 | 0.0124191 | -1.8137702 |
| LOC107964624 | uncharacterized LOC107964624 | -1.2497942 | 0.0122905 | -2.5867452 |
| LOC102656583 | uncharacterized LOC102656583 | -0.8041661 | 0.0122092 | -2.2069325 |
| LOC107964957 | uncharacterized LOC107964957 | 0.0303991 | 0.0116796 | -1.0431362 |
| LOC100578735 | pyruvate dehydrogenase E1 component subunit alpha, mitochondrial-like | 0.1636470 | 0.0115595 | -0.6894338 |
| LOC107964022 | ran-binding protein 9-like | 0.2897473 | 0.0115022 | 5.2648137 |
| LOC107965821 | uncharacterized LOC107965821 | -0.0633151 | 0.0113927 | -1.5652100 |
| LOC100578532 | uncharacterized LOC100578532 | 0.2171992 | 0.0113901 | -1.1107118 |
| LOC102655797 | uncharacterized LOC102655797 | -0.8957900 | 0.0113303 | -1.7664567 |
| LOC107965607 | uncharacterized LOC107965607 | 0.2594163 | 0.0113211 | -0.9184924 |
| LOC102654174 | uncharacterized LOC102654174 | -0.1942331 | 0.0113187 | -2.1307780 |
| LOC725478 | N-acetyltransferase 6 | -0.3820803 | 0.0112962 | 2.4691254 |
| LOC102656810 | uncharacterized LOC102656810 | 0.3305392 | 0.0112446 | -1.7906302 |
| LOC102654134 | uncharacterized LOC102654134 | 0.3529276 | 0.0110691 | -0.3041619 |
| LOC413684 | gustatory receptor for sugar taste 64f | 0.2106333 | 0.0110680 | -0.4016380 |
| LOC411315 | visual system homeobox 2 | -0.9135580 | 0.0110082 | 2.3413384 |
| LOC410000 | uncharacterized LOC410000 | 0.0538022 | 0.0107643 | 4.6884467 |
| LOC107964709 | uncharacterized LOC107964709 | -0.4001517 | 0.0107516 | -0.5897719 |
| Or30 | odorant receptor 30 | 1.9255615 | 0.0107085 | -1.8647156 |
| LOC410096 | gamma-glutamyltranspeptidase 1-like | -0.1951492 | 0.0106660 | 6.5109437 |
| LOC102656309 | uncharacterized LOC102656309 | 0.9145927 | 0.0106652 | 0.3227272 |
| LOC102656775 | uncharacterized LOC102656775 | -0.0982062 | 0.0106628 | -1.5985462 |
| LOC102653694 | uncharacterized LOC102653694 | 0.4550543 | 0.0104375 | -1.9474520 |
| LOC102655294 | uncharacterized LOC102655294 | -1.0644301 | 0.0104177 | -1.9872812 |
| LOC100576750 | uncharacterized LOC100576750 | 0.1086948 | 0.0103302 | -2.2768469 |
| LOC107965700 | uncharacterized LOC107965700 | -0.1195480 | 0.0101680 | -0.2491357 |
| LOC102655682 | uncharacterized LOC102655682 | 0.4073645 | 0.0099657 | -1.3301526 |
| LOC410757 | circadian locomoter output cycles protein kaput | -0.5757745 | 0.0099348 | -0.7484452 |
| LOC102656340 | uncharacterized LOC102656340 | -0.0940028 | 0.0098836 | 0.3298953 |
| LOC102654751 | uncharacterized LOC102654751 | 0.3281999 | 0.0098595 | -1.8259349 |
| LOC102654088 | uncharacterized LOC102654088 | -0.4739015 | 0.0098472 | 2.5454895 |
| LOC100576447 | DNA damage-regulated autophagy modulator protein 2-like | 0.1732900 | 0.0098381 | -0.0926840 |
| LOC724527 | coiled-coil domain-containing protein 28A | 0.0834554 | 0.0097925 | 3.1659004 |
| LOC107964096 | uncharacterized LOC107964096 | 0.2357384 | 0.0095554 | -0.0250670 |
| LOC100576537 | uncharacterized LOC100576537 | 0.6616444 | 0.0095154 | -0.9298600 |
| LOC100578157 | guanine nucleotide-binding protein subunit beta-like protein | 0.2140056 | 0.0095021 | -0.7280641 |
| LOC409460 | bifunctional 3’-phosphoadenosine 5’-phosphosulfate synthase | -0.0031896 | 0.0094792 | 5.5336240 |
| LOC102656149 | uncharacterized LOC102656149 | 0.6409564 | 0.0094245 | -0.5689953 |
| LOC107965915 | uncharacterized LOC107965915 | -1.1763678 | 0.0093230 | -1.5142600 |
| LOC107965721 | uncharacterized LOC107965721 | -0.9897474 | 0.0093198 | 0.1130229 |
| LOC102654585 | zinc finger protein 37 homolog | -0.0236668 | 0.0093158 | 0.8315227 |
| LOC107964266 | uncharacterized LOC107964266 | 0.5471330 | 0.0091911 | -1.9773913 |
| LOC411732 | trimeric intracellular cation channel type B | 0.1250808 | 0.0091464 | 4.7121461 |
| LOC102656722 | uncharacterized LOC102656722 | -0.3965465 | 0.0090594 | -0.8880818 |
| LOC100577761 | uncharacterized LOC100577761 | -0.3342709 | 0.0090451 | -2.3248024 |
| LOC726868 | uncharacterized LOC726868 | -0.2077230 | 0.0089316 | 2.2660889 |
| LOC107963987 | uncharacterized LOC107963987 | -0.3485331 | 0.0089100 | 6.1986229 |
| LOC102654951 | uncharacterized LOC102654951 | 0.0450533 | 0.0088878 | -1.5779129 |
| LOC107964285 | uncharacterized LOC107964285 | 0.1113956 | 0.0088870 | -2.3008014 |
| LOC107965621 | uncharacterized LOC107965621 | -0.3411574 | 0.0088647 | -0.4057603 |
| LOC100576838 | anionic trypsin-2 | 0.2834458 | 0.0088542 | -1.4187674 |
| LOC102653638 | uncharacterized LOC102653638 | 0.7211829 | 0.0087494 | -2.3266885 |
| LOC107964049 | uncharacterized LOC107964049 | -0.5448706 | 0.0087306 | -1.7840222 |
| LOC107964710 | uncharacterized LOC107964710 | -0.2147735 | 0.0087088 | -0.2274138 |
| LOC107964731 | uncharacterized LOC107964731 | -0.0875685 | 0.0086620 | -1.3055762 |
| LOC107964506 | uncharacterized LOC107964506 | 0.5586463 | 0.0086490 | -1.5327723 |
| LOC102655047 | zinc finger protein 273-like | -0.0848921 | 0.0085037 | -0.3383609 |
| LOC102654440 | uncharacterized LOC102654440 | -0.7834965 | 0.0084338 | -1.4527523 |
| LOC107964163 | uncharacterized LOC107964163 | -0.9626464 | 0.0083146 | -1.8879998 |
| LOC102653572 | uncharacterized LOC102653572 | -0.7486195 | 0.0083088 | -2.6173656 |
| Lop1 | long wavelength sensitive opsin 1 | 0.0492283 | 0.0082850 | -1.4347973 |
| LOC102656723 | uncharacterized LOC102656723 | -0.1561311 | 0.0082239 | -1.1818378 |
| LOC100578476 | uncharacterized LOC100578476 | 0.1271202 | 0.0082189 | -1.7780392 |
| LOC102655057 | uncharacterized LOC102655057 | 0.2974900 | 0.0081912 | -2.0480299 |
| LOC107964101 | uncharacterized LOC107964101 | -0.4151966 | 0.0081868 | -2.0281839 |
| LOC107964135 | uncharacterized LOC107964135 | 0.5891783 | 0.0081826 | -0.7358493 |
| LOC107964863 | uncharacterized LOC107964863 | -0.3308497 | 0.0081667 | -1.5338303 |
| LOC107964946 | uncharacterized LOC107964946 | -0.5799003 | 0.0081136 | 0.4720343 |
| LOC107965316 | uncharacterized LOC107965316 | -1.1268724 | 0.0080628 | -2.4250201 |
| LOC107964853 | uncharacterized LOC107964853 | -0.0716381 | 0.0079903 | -1.9849796 |
| LOC413068 | intraflagellar transport protein 46 homolog | -0.4932015 | 0.0079537 | -1.6493735 |
| LOC102655302 | uncharacterized LOC102655302 | 0.6241055 | 0.0079393 | -2.0965741 |
| LOC102654428 | uncharacterized LOC102654428 | -0.0926885 | 0.0079214 | -0.2943882 |
| LOC102656705 | uncharacterized LOC102656705 | 0.2266785 | 0.0079138 | -1.1073276 |
| LOC107965426 | uncharacterized LOC107965426 | 0.4198725 | 0.0078429 | -2.2484603 |
| LOC102653852 | uncharacterized LOC102653852 | 0.4288985 | 0.0078197 | -1.2518739 |
| LOC107965333 | uncharacterized LOC107965333 | -0.6103205 | 0.0078114 | -0.3698863 |
| LOC102654607 | uncharacterized LOC102654607 | -0.8122017 | 0.0077726 | -2.3454692 |
| LOC107965084 | uncharacterized LOC107965084 | -0.3103939 | 0.0077716 | -0.7753831 |
| LOC102655840 | uncharacterized LOC102655840 | 0.3883087 | 0.0077313 | -0.3134036 |
| LOC102655237 | uncharacterized LOC102655237 | 0.0717571 | 0.0077219 | -1.8840680 |
| LOC107965251 | uncharacterized LOC107965251 | 0.3925329 | 0.0077164 | -1.6442450 |
| LOC100577882 | uncharacterized LOC100577882 | 0.1269031 | 0.0077021 | 0.3366768 |
| LOC726765 | IQ and AAA domain-containing protein 1 | -0.4908612 | 0.0076214 | -0.8843826 |
| LOC100578835 | uncharacterized LOC100578835 | -0.0493730 | 0.0075512 | -0.3545206 |
| LOC107965859 | uncharacterized LOC107965859 | -0.4128702 | 0.0074754 | -0.5884866 |
| LOC102654874 | uncharacterized LOC102654874 | 0.0578124 | 0.0073586 | -1.6572004 |
| LOC409278 | apolipoprotein D | -0.1200839 | 0.0072765 | 5.0395172 |
| LOC107965409 | uncharacterized LOC107965409 | -0.2940956 | 0.0072544 | -2.0688678 |
| LOC102656842 | uncharacterized LOC102656842 | -0.2707804 | 0.0070574 | -1.2565064 |
| LOC107964078 | uncharacterized LOC107964078 | 0.2252085 | 0.0070524 | -2.3565182 |
| LOC107964885 | uncharacterized LOC107964885 | -0.3698146 | 0.0069800 | -2.1405192 |
| LOC102656453 | uncharacterized LOC102656453 | -0.0490706 | 0.0069581 | -1.2491094 |
| LOC102655033 | uncharacterized LOC102655033 | -0.7275695 | 0.0068787 | -2.4809905 |
| LOC107965513 | uncharacterized LOC107965513 | -1.1588976 | 0.0068696 | -0.7111597 |
| LOC100576257 | uncharacterized LOC100576257 | 0.0374007 | 0.0067688 | -1.2658490 |
| Vamp7 | vesicle-associated membrane protein 7 | -0.0198668 | 0.0067111 | 4.1372070 |
| LOC107964083 | uncharacterized LOC107964083 | 0.5691111 | 0.0066596 | -1.0694383 |
| LOC102656152 | uncharacterized LOC102656152 | -0.3637561 | 0.0066342 | -2.4513164 |
| LOC102654757 | uncharacterized LOC102654757 | -0.5661623 | 0.0066161 | -1.9979226 |
| LOC102655697 | uncharacterized LOC102655697 | -0.6981945 | 0.0064570 | -2.4805518 |
| LOC102653731 | uncharacterized LOC102653731 | -0.3983969 | 0.0062823 | -2.0482621 |
| LOC107966073 | uncharacterized LOC107966073 | -0.4122452 | 0.0062734 | -1.8212163 |
| LOC410654 | cholecystokinin receptor-like | 0.3767166 | 0.0062714 | -0.8556188 |
| LOC107964223 | uncharacterized LOC107964223 | -0.1166230 | 0.0062161 | -2.1961642 |
| LOC107965214 | uncharacterized LOC107965214 | -1.5009735 | 0.0061128 | -0.9799184 |
| LOC102653826 | uncharacterized LOC102653826 | -0.7215171 | 0.0059636 | -1.6170959 |
| LOC102654377 | uncharacterized LOC102654377 | -0.2370673 | 0.0059556 | -1.3290992 |
| LOC100578866 | uncharacterized LOC100578866 | -0.8601189 | 0.0059187 | -0.3770472 |
| LOC107965439 | uncharacterized LOC107965439 | 0.2956349 | 0.0059184 | -2.5030453 |
| LOC102654206 | uncharacterized LOC102654206 | -2.0444595 | 0.0059118 | -2.3806190 |
| LOC102655149 | uncharacterized LOC102655149 | 0.7673222 | 0.0058998 | -2.1855590 |
| LOC102654613 | uncharacterized LOC102654613 | -0.1667099 | 0.0058828 | -2.0482300 |
| LOC102654924 | uncharacterized LOC102654924 | 0.2705417 | 0.0058319 | -2.5059097 |
| LOC102654268 | uncharacterized LOC102654268 | -0.2379891 | 0.0058182 | 0.1615211 |
| LOC725360 | radial spoke head protein 9 homolog | 0.4656640 | 0.0058076 | -1.6954604 |
| LOC107964509 | uncharacterized LOC107964509 | 0.4663522 | 0.0056847 | -1.5465860 |
| LOC102654160 | uncharacterized LOC102654160 | 0.4364387 | 0.0056596 | -1.6638886 |
| LOC107965149 | uncharacterized LOC107965149 | 0.4682365 | 0.0056167 | -0.6823744 |
| LOC102655123 | uncharacterized LOC102655123 | 0.1402585 | 0.0056018 | 0.3055332 |
| LOC102655632 | uncharacterized LOC102655632 | 0.2530843 | 0.0055961 | -1.9833489 |
| LOC102654052 | uncharacterized LOC102654052 | -1.1296171 | 0.0055871 | -2.3491143 |
| LOC107965884 | uncharacterized LOC107965884 | -0.1721935 | 0.0055813 | -1.3938714 |
| LOC100578614 | tctex1 domain-containing protein 1 | -0.8823352 | 0.0055634 | -2.2240716 |
| LOC107965056 | uncharacterized LOC107965056 | 0.1838307 | 0.0055475 | -1.0163883 |
| LOC102654593 | uncharacterized LOC102654593 | 0.0369007 | 0.0055371 | -2.3030798 |
| LOC107965287 | uncharacterized LOC107965287 | 1.1243581 | 0.0054978 | -1.9360950 |
| LOC102656500 | uncharacterized LOC102656500 | -1.2489271 | 0.0054695 | -1.1615241 |
| LOC102654639 | uncharacterized LOC102654639 | 0.4862214 | 0.0053699 | -1.7222153 |
| LOC551604 | Rh-like protein | -0.2182834 | 0.0053543 | 2.0325705 |
| LOC102655080 | uncharacterized LOC102655080 | -0.3447386 | 0.0053335 | -1.3212634 |
| LOC102654255 | uncharacterized LOC102654255 | -0.0691396 | 0.0053228 | -2.3725924 |
| LOC107964233 | uncharacterized LOC107964233 | 0.0865340 | 0.0052930 | -1.2776873 |
| LOC102654344 | glutamine-rich protein 2-like | 0.5875117 | 0.0052679 | -2.2151799 |
| LOC726783 | vitellogenin-like | -0.5177932 | 0.0052647 | -2.5596842 |
| LOC107965826 | uncharacterized LOC107965826 | -0.6901351 | 0.0052359 | -1.1231426 |
| LOC100576529 | uncharacterized LOC100576529 | -1.1307552 | 0.0052140 | -2.2824528 |
| LOC107965027 | uncharacterized LOC107965027 | 0.1930293 | 0.0051782 | -1.9957379 |
| LOC107964528 | uncharacterized LOC107964528 | -0.4493422 | 0.0050162 | 1.2839720 |
| LOC726789 | 40S ribosomal protein S26 | -0.1463729 | 0.0049939 | 8.8407755 |
| LOC725165 | aquaporin AQPAe.a-like | 0.3367774 | 0.0048923 | 4.5345770 |
| LOC102654302 | uncharacterized LOC102654302 | 1.1079725 | 0.0048767 | -1.6969902 |
| LOC102655148 | uncharacterized LOC102655148 | -0.8111055 | 0.0048590 | -1.3136052 |
| LOC102656187 | uncharacterized LOC102656187 | -0.0535499 | 0.0048175 | -2.4762123 |
| LOC102655921 | uncharacterized LOC102655921 | 0.5831234 | 0.0047880 | 2.4024310 |
| LOC100577112 | astakine-like | 0.0834645 | 0.0047846 | -0.0388845 |
| LOC102654443 | uncharacterized LOC102654443 | -0.2873604 | 0.0047001 | -0.2185937 |
| LOC102654480 | uncharacterized LOC102654480 | -0.7482110 | 0.0046534 | -2.6174325 |
| LOC102654040 | uncharacterized LOC102654040 | 0.1233421 | 0.0046425 | -1.5996834 |
| LOC100578225 | uncharacterized LOC100578225 | 0.3161247 | 0.0046291 | -2.3342835 |
| LOC102655881 | uncharacterized LOC102655881 | -0.6485109 | 0.0046052 | -2.4749061 |
| LOC100577377 | uncharacterized LOC100577377 | -0.3318137 | 0.0045800 | 2.2012042 |
| LOC102654284 | uncharacterized LOC102654284 | 0.6860974 | 0.0045720 | -2.2655161 |
| LOC724768 | uncharacterized LOC724768 | -0.0996546 | 0.0044150 | 4.3554163 |
| LOC102656643 | uncharacterized LOC102656643 | -0.0785087 | 0.0043602 | -1.9872247 |
| LOC412109 | cilia- and flagella-associated protein 58 | -0.6299852 | 0.0043370 | -2.0851588 |
| LOC100576168 | uncharacterized LOC100576168 | 1.0594252 | 0.0043110 | -2.5049283 |
| LOC107964766 | uncharacterized LOC107964766 | -1.4272507 | 0.0042827 | -2.2146290 |
| LOC102653709 | cAMP-dependent protein kinase catalytic subunit-like | 0.1301000 | 0.0042096 | -1.2298684 |
| LOC102656431 | uncharacterized LOC102656431 | 0.8051885 | 0.0041844 | -2.5314771 |
| LOC102654113 | uncharacterized LOC102654113 | 0.7139656 | 0.0041523 | -2.6172927 |
| LOC107965912 | uncharacterized LOC107965912 | 0.4617155 | 0.0041229 | -2.4249659 |
| LOC725364 | flightin | -0.6506492 | 0.0040541 | -1.7250000 |
| LOC107965498 | uncharacterized LOC107965498 | -0.3025046 | 0.0040246 | -2.4032613 |
| LOC107966064 | uncharacterized LOC107966064 | -1.4160172 | 0.0040043 | -2.4782648 |
| LOC727021 | protein takeout-like | -0.6177923 | 0.0040036 | -0.4877786 |
| LOC107965931 | uncharacterized LOC107965931 | -0.6653289 | 0.0039948 | -2.1267817 |
| LOC107964558 | uncharacterized LOC107964558 | -0.6391667 | 0.0039856 | -2.1290362 |
| LOC107965293 | uncharacterized LOC107965293 | -0.9765126 | 0.0039670 | -2.3026721 |
| LOC102655181 | uncharacterized LOC102655181 | -0.8355139 | 0.0039433 | -0.8556845 |
| LOC102655252 | uncharacterized LOC102655252 | 1.1532990 | 0.0037852 | -1.4139320 |
| LOC102653871 | uncharacterized LOC102653871 | 0.0189641 | 0.0037398 | -0.5117356 |
| LOC102653797 | uncharacterized LOC102653797 | 0.4492329 | 0.0036649 | -0.8400342 |
| LOC100578502 | uncharacterized LOC100578502 | -0.0243952 | 0.0035836 | -1.6244391 |
| LOC102655064 | uncharacterized LOC102655064 | -1.0000953 | 0.0035371 | -2.3035364 |
| LOC552069 | probable hydroxyacid-oxoacid transhydrogenase, mitochondrial | 0.5567159 | 0.0035224 | 0.4184709 |
| LOC100577772 | uncharacterized LOC100577772 | -0.3831930 | 0.0034463 | -1.0885978 |
| LOC107963966 | odorant receptor 4-like | 0.4868038 | 0.0033800 | -2.4246550 |
| LOC724471 | 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase-like | -0.3249572 | 0.0033789 | 0.4121410 |
| LOC100577110 | uncharacterized LOC100577110 | 0.7542227 | 0.0033434 | -1.0983990 |
| LOC409721 | uncharacterized protein YER152C-like | -0.2009144 | 0.0032923 | 5.0850033 |
| LOC102653919 | uncharacterized LOC102653919 | -1.3360621 | 0.0032772 | -2.3959259 |
| LOC102655862 | uncharacterized LOC102655862 | -0.2369557 | 0.0032533 | 0.2201638 |
| LOC100578535 | probable cytochrome P450 6a14 | -0.6947238 | 0.0031649 | -2.2892524 |
| LOC727431 | gustatory receptor for sugar taste 64f | -0.6517158 | 0.0031632 | -2.1750052 |
| LOC107965512 | uncharacterized LOC107965512 | 1.1106883 | 0.0030411 | -2.0347954 |
| LOC413930 | tetratricopeptide repeat protein 30A | -0.1462729 | 0.0029685 | 1.9988699 |
| LOC100577202 | uncharacterized LOC100577202 | -0.0264815 | 0.0029556 | 2.7426274 |
| LOC102656601 | uncharacterized LOC102656601 | 0.8565913 | 0.0029489 | -1.5896628 |
| LOC724183 | cytidine deaminase-like | -0.3621482 | 0.0028880 | 1.2123434 |
| LOC107965781 | uncharacterized LOC107965781 | -0.6951566 | 0.0028798 | -1.1897289 |
| LOC102656472 | uncharacterized LOC102656472 | -0.6297647 | 0.0027434 | -1.1031750 |
| LOC102655443 | uncharacterized LOC102655443 | -0.0605440 | 0.0027175 | -2.0527770 |
| LOC107964844 | uncharacterized LOC107964844 | 0.5716613 | 0.0024776 | -0.1314696 |
| LOC102654572 | histone-lysine N-methyltransferase SETMAR-like | -0.1697761 | 0.0024388 | 0.6949720 |
| LOC107965068 | uncharacterized LOC107965068 | 0.4739422 | 0.0024162 | -1.6944545 |
| LOC107964448 | uncharacterized LOC107964448 | 0.3510914 | 0.0024098 | -1.1882600 |
| LOC102654770 | uncharacterized LOC102654770 | 0.5683272 | 0.0023659 | -1.9779573 |
| LOC727503 | uncharacterized LOC727503 | 0.0192577 | 0.0022664 | 2.3434900 |
| LOC102654699 | uncharacterized LOC102654699 | 0.8194160 | 0.0022212 | -1.9467097 |
| LOC107964287 | uncharacterized LOC107964287 | -0.0725796 | 0.0021796 | -1.7273838 |
| LOC107964424 | uncharacterized LOC107964424 | 0.3132149 | 0.0021478 | -1.4549106 |
| LOC100576585 | uncharacterized LOC100576585 | 0.1302451 | 0.0020361 | -0.8510645 |
| LOC100577068 | odorant receptor 4-like | 0.8682586 | 0.0019844 | -2.2309403 |
| LOC102656095 | uncharacterized LOC102656095 | 0.7238664 | 0.0019752 | -2.3218210 |
| LOC102654239 | uncharacterized LOC102654239 | 0.3360775 | 0.0018948 | -1.8013570 |
| LOC102654485 | uncharacterized LOC102654485 | 1.0121250 | 0.0018107 | -2.2805789 |
| LOC725783 | protein msta-like | -0.2972557 | 0.0017778 | -2.0157718 |
| LOC107964165 | uncharacterized LOC107964165 | 0.9165807 | 0.0017457 | -1.0802752 |
| LOC107965294 | uncharacterized LOC107965294 | 0.7765425 | 0.0016616 | -1.7741676 |
| LOC102656065 | uncharacterized LOC102656065 | -0.5677831 | 0.0016197 | -2.2610191 |
| LOC100577849 | uncharacterized LOC100577849 | -0.3752786 | 0.0014841 | -1.1718509 |
| LOC725690 | tetraspanin-3 | -0.0529907 | 0.0014783 | 1.0754836 |
| LOC411197 | dynein light chain 1, axonemal-like | 0.3325069 | 0.0014693 | -1.4897056 |
| LOC102656250 | uncharacterized LOC102656250 | -0.2865093 | 0.0013814 | -0.7201341 |
| LOC102655218 | odorant receptor 13a-like | -0.0896530 | 0.0012947 | -1.4630827 |
| LOC102654702 | uncharacterized LOC102654702 | 0.4696230 | 0.0009555 | -0.4045498 |
| LOC102656016 | uncharacterized LOC102656016 | 0.8378627 | 0.0009388 | -2.2353668 |
| LOC107964616 | uncharacterized LOC107964616 | 0.0177343 | 0.0009041 | -0.7129331 |
| LOC107965609 | uncharacterized LOC107965609 | 0.6097115 | 0.0007671 | -2.4228775 |
Yes, roughly half of the genes in the Dsx-responsive module form the RNAi experiment are found in the Dsx-containing module determined from larval gene expression.
The Dsx-containing module is associated with queen-upregulated genes during development, which is in line with the expectations from developing workers.
setLabels <- c("Development", "Experiment")
ggsHe <- goodSamplesGenes(heExpDat)
## Flagging genes and samples with too many missing values...
## ..step 1
## ..step 2
ggs <- goodSamplesGenes(expDat)
## Flagging genes and samples with too many missing values...
## ..step 1
## ..step 2
multiExpr <- list(Development = list(data = heExpDat[,ggsHe$goodGenes]), Experiment = list(data = expDat[,ggs$goodGenes]))
multiColor <- list(Development = factor(labels2colors(heNet$colors[ggsHe$goodGenes])), Experiment = factor(labels2colors(net$colors[ggs$goodGenes])))
mp <- modulePreservation(multiExpr, multiColor, referenceNetworks = 2, nPermutations = 500,randomSeed = 1 , quickCor = 1, verbose = 3, parallelCalculation = FALSE, checkData = FALSE)
exp(mp$preservation$log.p$ref.Experiment$inColumnsAlsoPresentIn.Development[labels2colors(DsxModule),"log.psummary.pres"])
## [1] 9.878836e-07
cor.test(heAlldegrees$kWithin[net$colors == DsxModule], deHe.tgw$table$logFC[net$colors == DsxModule], method = "s")
## Warning in cor.test.default(heAlldegrees$kWithin[net$colors ==
## DsxModule], : Cannot compute exact p-value with ties
##
## Spearman's rank correlation rho
##
## data: heAlldegrees$kWithin[net$colors == DsxModule] and deHe.tgw$table$logFC[net$colors == DsxModule]
## S = 99422000, p-value = 0.1527
## alternative hypothesis: true rho is not equal to 0
## sample estimates:
## rho
## 0.04892414
cor.test(heAlldegrees$kWithin[heNet$colors == heDsxModule], deHe.tgw$table$logFC[heNet$colors == heDsxModule], method = "s")
## Warning in cor.test.default(heAlldegrees$kWithin[heNet$colors ==
## heDsxModule], : Cannot compute exact p-value with ties
##
## Spearman's rank correlation rho
##
## data: heAlldegrees$kWithin[heNet$colors == heDsxModule] and deHe.tgw$table$logFC[heNet$colors == heDsxModule]
## S = 9540100000, p-value = 0.002149
## alternative hypothesis: true rho is not equal to 0
## sample estimates:
## rho
## 0.04900691
module.venn <- venn.diagram(list(development=colnames(heExpDat)[heNet$colors == heDsxModule], experiment=colnames(expDat)[net$colors == DsxModule]), NULL, fill=c("darkmagenta", "darkblue"), alpha=c(0.5,0.5), cex = 2, cat.fontface=4, category.names=c("Developmental", "Experimental"), main="Module overlap with developmental caste determination", fontfamily="sans")
pdf("figures/venn_jpeg.pdf")
grid.draw(module.venn)
dev.off()
## quartz_off_screen
## 2
The Dsx-sensitive module is highly preserved in the developmental data, and its corresponding module is upregulated in queens in early development.
qp <- read_tsv("data/Honey bee QMP compounds_wide.txt")
## Parsed with column specification:
## cols(
## `10-HDAA` = col_double(),
## `9-HDA` = col_double(),
## HOB = col_double(),
## `10-HDA` = col_double(),
## HVA = col_double(),
## `9-ODA` = col_double(),
## Treatment = col_character(),
## Honey.bee = col_integer(),
## `Ovary stage` = col_integer()
## )
pca.all <- prcomp(qp[,1:6], scale. = T)
summary(pca.all)
## Importance of components:
## PC1 PC2 PC3 PC4 PC5 PC6
## Standard deviation 1.7230 1.2213 0.9743 0.55688 0.41912 0.32344
## Proportion of Variance 0.4948 0.2486 0.1582 0.05169 0.02928 0.01744
## Cumulative Proportion 0.4948 0.7434 0.9016 0.95329 0.98256 1.00000
ggbiplot(pca.all, obs.scale = 1, var.scale = 1, size = qp$`Ovary stage`, groups = qp$Treatment, ellipse = TRUE) + scale_color_discrete() + theme(legend.direction = 'horizontal', legend.position = 'top')
qp2 <- cbind(pca.all$x[,1:2],qp %>% dplyr::select(`Ovary stage`, Treatment) %>% mutate(ovary = as.factor(`Ovary stage`) ))
ggplot(qp2, aes(as.factor(`Ovary stage`), PC2, fill=Treatment))+geom_line(stat="smooth", linetype = 2, method = "rlm", se=F, aes(color= Treatment, group=Treatment, alpha=.1))+geom_boxplot(outlier.color="white", varwidth = TRUE, position=position_dodge2(preserve = "single"))+theme_bw()+ylab("Queen mandibular pheromone (PCA2)")+xlab("Ovary activation stage")+scale_fill_manual(values=c("steelblue3", "orange"))+scale_color_manual(values=c("steelblue3", "orange"))+guides(alpha = F)+theme(legend.position="top", legend.text=element_text(size=12), axis.text=element_text(size=14))+coord_trans(limy=c(-1.5,.7))+theme(axis.title=element_text(size=14, face="bold"))
#ggsave("figures/qp ovary.pdf", height=5, width=5) # raw Figure 1
We see that treatment has a strongly significant effect on ovary activation, and there is an interaction between PC2 and treatment and their relationship to ovary development
summary(clmm2(ovary ~ Treatment*(PC1+PC2), data = qp2))
## Call:
## clm2(location = ovary ~ Treatment * (PC1 + PC2), data = qp2)
##
## Location coefficients:
## Estimate Std. Error z value Pr(>|z|)
## TreatmentGFP 2.8107 0.9148 3.0724 0.0021232
## PC1 -0.3679 0.4404 -0.8353 0.4035230
## PC2 -2.6820 1.2409 -2.1614 0.0306667
## TreatmentGFP:PC1 0.1099 0.4972 0.2210 0.8251167
## TreatmentGFP:PC2 3.9023 1.6861 2.3144 0.0206461
##
## No scale coefficients
##
## Threshold coefficients:
## Estimate Std. Error z value
## 0|1 0.6350 0.5807 1.0935
## 1|2 1.7584 0.6685 2.6302
## 2|3 2.5175 0.7378 3.4120
##
## log-likelihood: -35.11696
## AIC: 86.23393
## Condition number of Hessian: 240.3247
bm <- read_tsv("data/DSX_RNAi_Mortality.txt", col_types = cols())
summary(glm(Mortality ~ 1 + Treatment, data = bm, binomial(link= "logit")))
##
## Call:
## glm(formula = Mortality ~ 1 + Treatment, family = binomial(link = "logit"),
## data = bm)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -1.328 -1.310 1.034 1.051 1.051
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 0.30538 0.35222 0.867 0.386
## TreatmentGFP 0.04293 0.51596 0.083 0.934
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 84.330 on 61 degrees of freedom
## Residual deviance: 84.323 on 60 degrees of freedom
## AIC: 88.323
##
## Number of Fisher Scoring iterations: 4
loadings <- pca.all$rotation
sweep(x = abs(loadings), MARGIN = 2, STATS = colSums(abs(loadings)), FUN = "/")[,1:2] %>% kable(output="html", digits=3)
| PC1 | PC2 | |
|---|---|---|
| 10-HDAA | 0.265 | 0.080 |
| 9-HDA | 0.200 | 0.259 |
| HOB | 0.254 | 0.089 |
| 10-HDA | 0.253 | 0.024 |
| HVA | 0.015 | 0.174 |
| 9-ODA | 0.013 | 0.374 |
## setting value
## version R version 3.4.1 (2017-06-30)
## system x86_64, darwin15.6.0
## ui X11
## language (EN)
## collate en_US.UTF-8
## tz Australia/Sydney
## date 2018-02-21
| package |
|
version | date | source |
|---|---|---|---|---|
| acepack | 1.4.1 | 2016-10-29 | CRAN (R 3.4.0) | |
| annotate |
|
1.54.0 | 2017-04-25 | Bioconductor |
| AnnotationDbi |
|
1.38.2 | 2017-07-27 | Bioconductor |
| AnnotationForge | 1.18.2 | 2017-09-02 | Bioconductor | |
| assertthat | 0.2.0 | 2017-04-11 | CRAN (R 3.4.0) | |
| backports | 1.1.2 | 2017-12-13 | CRAN (R 3.4.3) | |
| base |
|
3.4.1 | 2017-07-07 | local |
| base64enc | 0.1-3 | 2015-07-28 | CRAN (R 3.4.0) | |
| bindr | 0.1 | 2016-11-13 | CRAN (R 3.4.0) | |
| bindrcpp |
|
0.2 | 2017-06-17 | CRAN (R 3.4.0) |
| Biobase |
|
2.36.2 | 2017-05-04 | Bioconductor |
| BiocGenerics |
|
0.22.1 | 2017-10-07 | Bioconductor |
| bit | 1.1-12 | 2014-04-09 | CRAN (R 3.4.0) | |
| bit64 | 0.9-7 | 2017-05-08 | CRAN (R 3.4.0) | |
| bitops | 1.0-6 | 2013-08-17 | CRAN (R 3.4.0) | |
| blob | 1.1.0 | 2017-06-17 | CRAN (R 3.4.0) | |
| broom | 0.4.3 | 2017-11-20 | CRAN (R 3.4.1) | |
| Category |
|
2.42.1 | 2017-06-24 | Bioconductor |
| cellranger | 1.1.0 | 2016-07-27 | CRAN (R 3.4.0) | |
| checkmate | 1.8.5 | 2017-10-24 | CRAN (R 3.4.2) | |
| cli | 1.0.0 | 2017-11-05 | CRAN (R 3.4.2) | |
| cluster | 2.0.6 | 2017-03-10 | CRAN (R 3.4.1) | |
| codetools | 0.2-15 | 2016-10-05 | CRAN (R 3.4.1) | |
| colorspace | 1.3-2 | 2016-12-14 | CRAN (R 3.4.0) | |
| compiler | 3.4.1 | 2017-07-07 | local | |
| crayon | 1.3.4 | 2017-09-16 | CRAN (R 3.4.1) | |
| data.table | 1.10.4-3 | 2017-10-27 | CRAN (R 3.4.2) | |
| datasets |
|
3.4.1 | 2017-07-07 | local |
| DBI | 0.7 | 2017-06-18 | CRAN (R 3.4.0) | |
| DEoptimR | 1.0-8 | 2016-11-19 | CRAN (R 3.4.0) | |
| devtools |
|
1.13.4 | 2017-11-09 | CRAN (R 3.4.2) |
| digest | 0.6.15 | 2018-01-28 | CRAN (R 3.4.3) | |
| doParallel | 1.0.11 | 2017-09-28 | CRAN (R 3.4.2) | |
| dplyr |
|
0.7.4 | 2017-09-28 | CRAN (R 3.4.2) |
| dynamicTreeCut |
|
1.63-1 | 2016-03-11 | CRAN (R 3.4.0) |
| edgeR |
|
3.18.1 | 2017-05-06 | Bioconductor |
| ellipse | 0.4.1 | 2018-01-05 | CRAN (R 3.4.3) | |
| evaluate | 0.10.1 | 2017-06-24 | CRAN (R 3.4.1) | |
| fastcluster |
|
1.1.24 | 2017-08-21 | CRAN (R 3.4.1) |
| fit.models | 0.5-14 | 2017-04-06 | CRAN (R 3.4.0) | |
| forcats |
|
0.2.0 | 2017-01-23 | CRAN (R 3.4.0) |
| foreach | 1.4.4 | 2017-12-12 | CRAN (R 3.4.3) | |
| foreign | 0.8-69 | 2017-06-22 | CRAN (R 3.4.1) | |
| Formula | 1.2-2 | 2017-07-10 | CRAN (R 3.4.1) | |
| genefilter | 1.58.1 | 2017-05-06 | Bioconductor | |
| ggplot2 |
|
2.2.1 | 2016-12-30 | CRAN (R 3.4.0) |
| ggsignif |
|
0.4.0 | 2017-08-03 | CRAN (R 3.4.1) |
| glue | 1.2.0 | 2017-10-29 | CRAN (R 3.4.2) | |
| GO.db |
|
3.4.1 | 2017-08-03 | Bioconductor |
| GOstats |
|
2.42.0 | 2017-04-25 | Bioconductor |
| graph |
|
1.54.0 | 2017-04-25 | Bioconductor |
| graphics |
|
3.4.1 | 2017-07-07 | local |
| grDevices |
|
3.4.1 | 2017-07-07 | local |
| grid | 3.4.1 | 2017-07-07 | local | |
| gridExtra | 2.3 | 2017-09-09 | CRAN (R 3.4.1) | |
| GSEABase |
|
1.38.2 | 2017-09-21 | Bioconductor |
| gtable | 0.2.0 | 2016-02-26 | CRAN (R 3.4.0) | |
| haven | 1.1.1 | 2018-01-18 | CRAN (R 3.4.3) | |
| highr | 0.6 | 2016-05-09 | CRAN (R 3.4.0) | |
| Hmisc | 4.1-1 | 2018-01-03 | CRAN (R 3.4.1) | |
| hms | 0.4.1 | 2018-01-24 | CRAN (R 3.4.3) | |
| htmlTable | 1.11.2 | 2018-01-20 | CRAN (R 3.4.3) | |
| htmltools | 0.3.6 | 2017-04-28 | CRAN (R 3.4.0) | |
| htmlwidgets | 1.0 | 2018-01-20 | CRAN (R 3.4.3) | |
| httr | 1.3.1 | 2017-08-20 | CRAN (R 3.4.1) | |
| igraph | 1.1.2 | 2017-07-21 | CRAN (R 3.4.1) | |
| impute | 1.50.1 | 2017-05-06 | Bioconductor | |
| IRanges |
|
2.10.5 | 2017-10-08 | Bioconductor |
| iterators | 1.0.9 | 2017-12-12 | CRAN (R 3.4.3) | |
| jsonlite | 1.5 | 2017-06-01 | CRAN (R 3.4.0) | |
| kableExtra |
|
0.7.0 | 2018-01-15 | CRAN (R 3.4.3) |
| knitr |
|
1.19 | 2018-01-29 | CRAN (R 3.4.3) |
| labeling | 0.3 | 2014-08-23 | CRAN (R 3.4.0) | |
| lattice | 0.20-35 | 2017-03-25 | CRAN (R 3.4.1) | |
| latticeExtra | 0.6-28 | 2016-02-09 | CRAN (R 3.4.0) | |
| lazyeval | 0.2.1 | 2017-10-29 | CRAN (R 3.4.2) | |
| limma |
|
3.32.10 | 2017-10-13 | Bioconductor |
| locfit | 1.5-9.1 | 2013-04-20 | CRAN (R 3.4.0) | |
| lubridate | 1.7.2 | 2018-02-06 | CRAN (R 3.4.3) | |
| magrittr | 1.5 | 2014-11-22 | CRAN (R 3.4.0) | |
| MASS | 7.3-48 | 2017-12-25 | CRAN (R 3.4.3) | |
| Matrix |
|
1.2-12 | 2017-11-15 | CRAN (R 3.4.2) |
| matrixStats | 0.53.1 | 2018-02-11 | cran (@0.53.1) | |
| memoise | 1.1.0 | 2017-04-21 | CRAN (R 3.4.0) | |
| methods |
|
3.4.1 | 2017-07-07 | local |
| mnormt | 1.5-5 | 2016-10-15 | CRAN (R 3.4.0) | |
| modelr | 0.1.1 | 2017-07-24 | CRAN (R 3.4.1) | |
| munsell | 0.4.3 | 2016-02-13 | CRAN (R 3.4.0) | |
| mvtnorm | 1.0-7 | 2018-01-25 | CRAN (R 3.4.3) | |
| networkD3 |
|
0.4 | 2017-03-18 | CRAN (R 3.4.0) |
| nlme | 3.1-131.1 | 2018-02-16 | CRAN (R 3.4.3) | |
| nnet | 7.3-12 | 2016-02-02 | CRAN (R 3.4.1) | |
| parallel |
|
3.4.1 | 2017-07-07 | local |
| pcaPP | 1.9-73 | 2018-01-14 | CRAN (R 3.4.3) | |
| pillar | 1.1.0 | 2018-01-14 | CRAN (R 3.4.3) | |
| pkgconfig | 2.0.1 | 2017-03-21 | CRAN (R 3.4.0) | |
| plyr | 1.8.4 | 2016-06-08 | CRAN (R 3.4.0) | |
| preprocessCore | 1.38.1 | 2017-05-06 | Bioconductor | |
| psych | 1.7.8 | 2017-09-09 | CRAN (R 3.4.1) | |
| purrr |
|
0.2.4 | 2017-10-18 | CRAN (R 3.4.2) |
| qvalue |
|
2.8.0 | 2017-04-25 | Bioconductor |
| R6 | 2.2.2 | 2017-06-17 | CRAN (R 3.4.0) | |
| RBGL | 1.52.0 | 2017-04-25 | Bioconductor | |
| RColorBrewer |
|
1.1-2 | 2014-12-07 | CRAN (R 3.4.0) |
| Rcpp | 0.12.15 | 2018-01-20 | CRAN (R 3.4.3) | |
| RCurl | 1.95-4.10 | 2018-01-04 | CRAN (R 3.4.3) | |
| readr |
|
1.1.1 | 2017-05-16 | CRAN (R 3.4.0) |
| readxl | 1.0.0 | 2017-04-18 | CRAN (R 3.4.0) | |
| reshape2 | 1.4.3 | 2017-12-11 | CRAN (R 3.4.3) | |
| rlang | 0.1.6 | 2017-12-21 | CRAN (R 3.4.3) | |
| rmarkdown | 1.8 | 2017-11-17 | CRAN (R 3.4.2) | |
| robust | 0.4-18 | 2017-04-27 | CRAN (R 3.4.0) | |
| robustbase | 0.92-8 | 2017-11-01 | CRAN (R 3.4.2) | |
| rpart | 4.1-12 | 2018-01-12 | CRAN (R 3.4.3) | |
| rprojroot | 1.3-2 | 2018-01-03 | CRAN (R 3.4.1) | |
| rrcov | 1.4-3 | 2016-09-06 | CRAN (R 3.4.0) | |
| RSQLite |
|
2.0 | 2017-06-19 | CRAN (R 3.4.1) |
| rstudioapi | 0.7 | 2017-09-07 | CRAN (R 3.4.1) | |
| rvest | 0.3.2 | 2016-06-17 | CRAN (R 3.4.0) | |
| S4Vectors |
|
0.14.7 | 2017-10-08 | Bioconductor |
| scales |
|
0.5.0 | 2017-08-24 | CRAN (R 3.4.1) |
| scatterD3 |
|
0.8.1 | 2016-12-13 | CRAN (R 3.4.0) |
| sleuth |
|
0.29.0 | 2018-02-19 | Github (pachterlab/sleuth@8308dfd) |
| splines | 3.4.1 | 2017-07-07 | local | |
| stats |
|
3.4.1 | 2017-07-07 | local |
| stats4 |
|
3.4.1 | 2017-07-07 | local |
| stringi | 1.1.6 | 2017-11-17 | CRAN (R 3.4.2) | |
| stringr |
|
1.2.0 | 2017-02-18 | CRAN (R 3.4.0) |
| survival | 2.41-3 | 2017-04-04 | CRAN (R 3.4.1) | |
| tibble |
|
1.4.2 | 2018-01-22 | CRAN (R 3.4.3) |
| tidyr |
|
0.8.0 | 2018-01-29 | CRAN (R 3.4.3) |
| tidyselect | 0.2.3 | 2017-11-06 | CRAN (R 3.4.2) | |
| tidyverse |
|
1.2.1 | 2017-11-14 | CRAN (R 3.4.2) |
| tools | 3.4.1 | 2017-07-07 | local | |
| utils |
|
3.4.1 | 2017-07-07 | local |
| viridisLite | 0.3.0 | 2018-02-01 | CRAN (R 3.4.1) | |
| WGCNA |
|
1.62 | 2018-02-12 | CRAN (R 3.4.1) |
| withr | 2.1.1 | 2017-12-19 | CRAN (R 3.4.3) | |
| XML |
|
3.98-1.9 | 2017-06-19 | CRAN (R 3.4.1) |
| xml2 | 1.2.0 | 2018-01-24 | CRAN (R 3.4.3) | |
| xtable | 1.8-2 | 2016-02-05 | CRAN (R 3.4.0) | |
| yaml | 2.1.16 | 2017-12-12 | CRAN (R 3.4.3) |